diff options
| author | James McCoy <jamessan@jamessan.com> | 2020-04-13 11:06:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-13 11:06:23 -0400 |
| commit | 13b4a6fd4fa67794e76892cb362121a33a756f58 (patch) | |
| tree | 31bd8bca21028be79e3111a53725144e854d92f5 /src/nvim/cursor_shape.h | |
| parent | 46fdad255ead9ca484a6e512efe13b379b8fc8ab (diff) | |
| parent | a122f6c6d4d64ab6a3bcd55bde220dc115acd73c (diff) | |
| download | rneovim-13b4a6fd4fa67794e76892cb362121a33a756f58.tar.gz rneovim-13b4a6fd4fa67794e76892cb362121a33a756f58.tar.bz2 rneovim-13b4a6fd4fa67794e76892cb362121a33a756f58.zip | |
Merge pull request #12073 from janlazo/vim-8.2.0027
vim-patch:8.1.{2366,2378,2387,2387},8.2.{27,560}
Diffstat (limited to 'src/nvim/cursor_shape.h')
| -rw-r--r-- | src/nvim/cursor_shape.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/cursor_shape.h b/src/nvim/cursor_shape.h index 2c466603f0..a23fa6836d 100644 --- a/src/nvim/cursor_shape.h +++ b/src/nvim/cursor_shape.h @@ -33,11 +33,11 @@ SHAPE_HOR = 1, ///< horizontal bar cursor SHAPE_VER = 2 ///< vertical bar cursor } CursorShape; -#define MSHAPE_NUMBERED 1000 /* offset for shapes identified by number */ -#define MSHAPE_HIDE 1 /* hide mouse pointer */ +#define MSHAPE_NUMBERED 1000 // offset for shapes identified by number +#define MSHAPE_HIDE 1 // hide mouse pointer -#define SHAPE_MOUSE 1 /* used for mouse pointer shape */ -#define SHAPE_CURSOR 2 /* used for text cursor shape */ +#define SHAPE_MOUSE 1 // used for mouse pointer shape +#define SHAPE_CURSOR 2 // used for text cursor shape typedef struct cursor_entry { char *full_name; ///< mode description |
