diff options
author | Tom Praschan <13141438+tom-anders@users.noreply.github.com> | 2022-04-07 16:14:02 +0200 |
---|---|---|
committer | Tom Praschan <13141438+tom-anders@users.noreply.github.com> | 2022-04-09 15:39:46 +0200 |
commit | 45f62464d3e1f39e74fca627e27eea106ffe46ef (patch) | |
tree | 3ff4fdbd476d29c6427de9b3b02a63c0eb43b13a /runtime/doc/indent.txt | |
parent | 233014f92b5d4d5bf8a6f019241aafd1b05dd383 (diff) | |
download | rneovim-45f62464d3e1f39e74fca627e27eea106ffe46ef.tar.gz rneovim-45f62464d3e1f39e74fca627e27eea106ffe46ef.tar.bz2 rneovim-45f62464d3e1f39e74fca627e27eea106ffe46ef.zip |
vim-patch:8.2.4702: C++ scope labels are hard-coded
Problem: C++ scope labels are hard-coded.
Solution: Add 'cinscopedecls' to define the labels. (Tom Praschan,
closes vim/vim#10109)
https://github.com/vim/vim/commit/3506cf34c17c5eae6c2d1317db1fcd5a8493c288
Diffstat (limited to 'runtime/doc/indent.txt')
-rw-r--r-- | runtime/doc/indent.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/runtime/doc/indent.txt b/runtime/doc/indent.txt index d0d4ddad32..3992b2d3d7 100644 --- a/runtime/doc/indent.txt +++ b/runtime/doc/indent.txt @@ -38,11 +38,12 @@ is not a C compiler: it does not recognize all syntax. One requirement is that toplevel functions have a '{' in the first column. Otherwise they are easily confused with declarations. -These four options control C program indenting: +These five options control C program indenting: 'cindent' Enables Vim to perform C program indenting automatically. 'cinkeys' Specifies which keys trigger reindenting in insert mode. 'cinoptions' Sets your preferred indent style. 'cinwords' Defines keywords that start an extra indent in the next line. +'cinscopedecls' Defines strings that are recognized as a C++ scope declaration. If 'lisp' is not on and 'equalprg' is empty, the "=" operator indents using Vim's built-in algorithm rather than calling an external program. @@ -289,8 +290,9 @@ The examples below assume a 'shiftwidth' of 4. < *cino-g* gN Place C++ scope declarations N characters from the indent of the - block they are in. (default 'shiftwidth'). A scope declaration - can be "public:", "protected:" or "private:". + block they are in. (default 'shiftwidth'). By default, a scope + declaration is "public:", "protected:" or "private:". This can + be adjusted with the 'cinscopedecls' option. cino= cino=g0 > { { |