diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-08-02 19:23:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-02 19:23:57 -0400 |
commit | 8baf7bce2b51e8d3d47b6c70ce054663d927639a (patch) | |
tree | ca10917fd84e011306b3303829704232b7f2f682 /runtime | |
parent | 93443d59a9680a6055d4602653d34516bc2c2571 (diff) | |
parent | c24daf5a1013c629f82ba8d4a4de885d7986d982 (diff) | |
download | rneovim-8baf7bce2b51e8d3d47b6c70ce054663d927639a.tar.gz rneovim-8baf7bce2b51e8d3d47b6c70ce054663d927639a.tar.bz2 rneovim-8baf7bce2b51e8d3d47b6c70ce054663d927639a.zip |
Merge pull request #15226 from zeertzjq/vim-8.1.2029
vim-patch:8.1.2029,8.1.2117,8.1.2214,8.2.3204
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 5292847240..f55ec62b77 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1809,14 +1809,21 @@ A jump table for the options with a short description can be found at |Q_op|. *'cursorlineopt'* *'culopt'* -'cursorlineopt' 'culopt' string (default: "both") +'cursorlineopt' 'culopt' string (default: "number,line") local to window - Settings for how 'cursorline' is displayed. Valid values: - "line" Highlight the text line of the cursor with + Comma separated list of settings for how 'cursorline' is displayed. + Valid values: + "line" Highlight the text line of the cursor with CursorLine |hl-CursorLine|. - "number" Highlight the line number of the cursor with + "screenline" Highlight only the screen line of the cursor with + CursorLine |hl-CursorLine|. + "number" Highlight the line number of the cursor with CursorLineNr |hl-CursorLineNr|. - "both" Highlight as both "line" and "number" are set. + + Special value: + "both" Alias for the values "line,number". + + "line" and "screenline" cannot be used together. *'debug'* |