diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-10-30 02:23:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-29 17:23:20 -0700 |
commit | 4472c56d54f447040f6e8610b261b7efa0d04eb6 (patch) | |
tree | fcc56104bc56529999bd18e90ecef1c80711ecf0 /src/nvim/cursor_shape.h | |
parent | 16d06fa3eb74ed96b659736ea504c31ed81c325e (diff) | |
download | rneovim-4472c56d54f447040f6e8610b261b7efa0d04eb6.tar.gz rneovim-4472c56d54f447040f6e8610b261b7efa0d04eb6.tar.bz2 rneovim-4472c56d54f447040f6e8610b261b7efa0d04eb6.zip |
refactor: uncrustify #16090
Diffstat (limited to 'src/nvim/cursor_shape.h')
-rw-r--r-- | src/nvim/cursor_shape.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/cursor_shape.h b/src/nvim/cursor_shape.h index 06eaa431a0..93bddd47c7 100644 --- a/src/nvim/cursor_shape.h +++ b/src/nvim/cursor_shape.h @@ -24,13 +24,13 @@ typedef enum { SHAPE_IDX_MORE = 14, ///< Hit-return or More SHAPE_IDX_MOREL = 15, ///< Hit-return or More in last line SHAPE_IDX_SM = 16, ///< showing matching paren - SHAPE_IDX_COUNT = 17 + SHAPE_IDX_COUNT = 17, } ModeShape; typedef enum { SHAPE_BLOCK = 0, ///< block cursor SHAPE_HOR = 1, ///< horizontal bar cursor - SHAPE_VER = 2 ///< vertical bar cursor + SHAPE_VER = 2, ///< vertical bar cursor } CursorShape; #define MSHAPE_NUMBERED 1000 // offset for shapes identified by number |