diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2022-08-21 12:32:25 -0600 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2022-08-27 20:53:30 -0600 |
commit | 2a1e15d2a76d1e0a0a177d87f233e7ceecb25ade (patch) | |
tree | 8037d1adef037be7e14577bb807af2b4e7971041 /runtime/doc | |
parent | 33c115d92a47fb62b06d27074bd7270d30c1e637 (diff) | |
download | rneovim-2a1e15d2a76d1e0a0a177d87f233e7ceecb25ade.tar.gz rneovim-2a1e15d2a76d1e0a0a177d87f233e7ceecb25ade.tar.bz2 rneovim-2a1e15d2a76d1e0a0a177d87f233e7ceecb25ade.zip |
feat(colorcolchar): rename colorcol in fillchars to colorc
Rename the colorcol option in fillchars to the more terse colorc.
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/options.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index d41f1cf1cd..73ab36ba0e 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1351,10 +1351,10 @@ A jump table for the options with a short description can be found at |Q_op|. local to window 'colorcolumn' is a comma-separated list of screen columns that are highlighted with ColorColumn |hl-ColorColumn| and drawn using the - "colorcol" option from 'fillchars'. Useful to align - text. Will make screen redrawing slower. - The screen column can be an absolute number, or a number preceded with - '+' or '-', which is added to or subtracted from 'textwidth'. > + "colorc" option from 'fillchars'. Useful to align text. Will make + screen redrawing slower. The screen column can be an absolute number, + or a number preceded with '+' or '-', which is added to or subtracted + from 'textwidth'. > :set cc=+1 " highlight column after 'textwidth' :set cc=+1,+2,+3 " highlight three columns after 'textwidth' |