diff options
author | Josh Rahm <rahm@google.com> | 2022-08-24 11:45:07 -0600 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2022-08-30 23:18:13 -0600 |
commit | 9cd203045963095d16e17504aad76d3518d8d826 (patch) | |
tree | 91a9353ad34a9a9af1d2ba72dd9bc592038c2865 /runtime | |
parent | 9a4934da2e2c9646299286f179a7d480bfbdf7af (diff) | |
download | rneovim-9cd203045963095d16e17504aad76d3518d8d826.tar.gz rneovim-9cd203045963095d16e17504aad76d3518d8d826.tar.bz2 rneovim-9cd203045963095d16e17504aad76d3518d8d826.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' |