diff options
Diffstat (limited to 'src/nvim/mouse.h')
-rw-r--r-- | src/nvim/mouse.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/nvim/mouse.h b/src/nvim/mouse.h index d493a479b1..8b2d7e0acd 100644 --- a/src/nvim/mouse.h +++ b/src/nvim/mouse.h @@ -9,17 +9,18 @@ #include "nvim/window.h" /// jump_to_mouse() returns one of first five these values, possibly with -/// some of the other four added. +/// some of the other five added. enum { IN_UNKNOWN = 0, IN_BUFFER = 1, - IN_STATUS_LINE = 2, ///< on status or command line - IN_SEP_LINE = 4, ///< on vertical separator line - IN_OTHER_WIN = 8, ///< in other window but can't go there + IN_STATUS_LINE = 2, ///< on status or command line + IN_SEP_LINE = 4, ///< on vertical separator line + IN_OTHER_WIN = 8, ///< in other window but can't go there CURSOR_MOVED = 0x100, - MOUSE_FOLD_CLOSE = 0x200, ///< clicked on '-' in fold column - MOUSE_FOLD_OPEN = 0x400, ///< clicked on '+' in fold column - MOUSE_WINBAR = 0x800, ///< in window toolbar + MOUSE_FOLD_CLOSE = 0x200, ///< clicked on '-' in fold column + MOUSE_FOLD_OPEN = 0x400, ///< clicked on '+' in fold column + MOUSE_WINBAR = 0x800, ///< in window toolbar + MOUSE_STATUSCOL = 0x1000, ///< in 'statuscolumn' }; /// flags for jump_to_mouse() |