diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/move.c | 2 | ||||
-rw-r--r-- | src/nvim/option.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/move.c b/src/nvim/move.c index 8efb038a55..dd9737ede2 100644 --- a/src/nvim/move.c +++ b/src/nvim/move.c @@ -2699,7 +2699,7 @@ void do_check_cursorbind(void) FOR_ALL_WINDOWS_IN_TAB(wp, curtab) { curwin = wp; curbuf = curwin->w_buffer; - // skip original window and windows with 'noscrollbind' + // skip original window and windows with 'nocursorbind' if (curwin != old_curwin && curwin->w_p_crb) { if (curwin->w_p_diff) { curwin->w_cursor.lnum = diff --git a/src/nvim/option.c b/src/nvim/option.c index e709a810bc..f87ac258bc 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -137,6 +137,7 @@ static char *p_vsts_nopaste; #define OPTION_COUNT ARRAY_SIZE(options) +/// :set boolean option prefix typedef enum { PREFIX_NO = 0, ///< "no" prefix PREFIX_NONE, ///< no prefix |