diff options
author | Pavel Platto <hinidu@gmail.com> | 2014-05-16 13:40:40 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-28 10:42:06 -0400 |
commit | a01f7948bc28df20b5d96ed53f8d25b2db12a48d (patch) | |
tree | 87049c90c577f25c86cc52a66fe8f5110c9f1958 /src/nvim/cursor.h | |
parent | baaa4287851ecf478b40054efd7b786501eb70ef (diff) | |
download | rneovim-a01f7948bc28df20b5d96ed53f8d25b2db12a48d.tar.gz rneovim-a01f7948bc28df20b5d96ed53f8d25b2db12a48d.tar.bz2 rneovim-a01f7948bc28df20b5d96ed53f8d25b2db12a48d.zip |
Add cursor.{c,h} to clint-files.txt
Diffstat (limited to 'src/nvim/cursor.h')
-rw-r--r-- | src/nvim/cursor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/cursor.h b/src/nvim/cursor.h index 3cceb0261e..62ea34ab30 100644 --- a/src/nvim/cursor.h +++ b/src/nvim/cursor.h @@ -1,6 +1,8 @@ #ifndef NVIM_CURSOR_H #define NVIM_CURSOR_H +#include <stdbool.h> + #include "nvim/vim.h" #include "nvim/misc2.h" @@ -17,7 +19,7 @@ void check_cursor_col(void); void check_cursor_col_win(win_T *win); void check_cursor(void); void adjust_cursor_col(void); -int leftcol_changed(void); +bool leftcol_changed(void); int gchar_cursor(void); void pchar_cursor(char_u c); char_u *get_cursor_line_ptr(void); |