diff options
author | Josh Rahm <rahm@google.com> | 2022-08-24 11:45:07 -0600 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2022-08-27 20:53:30 -0600 |
commit | de6bcd7e7b3290b6d164293f414dcc13461abdd6 (patch) | |
tree | 6a3eec05d58f313321e68559b8168c717cd0c83d /runtime | |
parent | f8bddb98545c09a5b861e9d4e0f4edd1e920a4b3 (diff) | |
download | rneovim-de6bcd7e7b3290b6d164293f414dcc13461abdd6.tar.gz rneovim-de6bcd7e7b3290b6d164293f414dcc13461abdd6.tar.bz2 rneovim-de6bcd7e7b3290b6d164293f414dcc13461abdd6.zip |
feat(colorcolchar): revert "feat: rename colorcol in fillchars to colorc"
This reverts commit 234959abbfcf075cb09304b00fc391780580056d and
renames the option 'colorc' -> 'colorcol' again.
Diffstat (limited to 'runtime')
-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 73ab36ba0e..d41f1cf1cd 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 - "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'. > + "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'. > :set cc=+1 " highlight column after 'textwidth' :set cc=+1,+2,+3 " highlight three columns after 'textwidth' |