diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2023-11-29 22:39:54 +0000 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2023-11-29 22:39:54 +0000 |
commit | 21cb7d04c387e4198ca8098a884c78b56ffcf4c2 (patch) | |
tree | 84fe5690df1551f0bb2bdfe1a13aacd29ebc1de7 /runtime/doc/indent.txt | |
parent | d9c904f85a23a496df4eb6be42aa43f007b22d50 (diff) | |
parent | 4a8bf24ac690004aedf5540fa440e788459e5e34 (diff) | |
download | rneovim-colorcolchar.tar.gz rneovim-colorcolchar.tar.bz2 rneovim-colorcolchar.zip |
Merge remote-tracking branch 'upstream/master' into colorcolcharcolorcolchar
Diffstat (limited to 'runtime/doc/indent.txt')
-rw-r--r-- | runtime/doc/indent.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/runtime/doc/indent.txt b/runtime/doc/indent.txt index f3e196b426..853facdaa0 100644 --- a/runtime/doc/indent.txt +++ b/runtime/doc/indent.txt @@ -112,7 +112,7 @@ e Reindent a line that starts with "else" when you type the second 'e'. =~word Like =word, but ignore case. If you really want to reindent when you type 'o', 'O', 'e', '0', '<', '>', -'*', ':' or '!', use "<o>", "<O>", "<e>", "<0>", "<<>", "<>>", "<*>", "<:>" or +"*", ':' or '!', use "<o>", "<O>", "<e>", "<0>", "<<>", "<>>", "<*>", "<:>" or "<!>", respectively, for those keys. For an emacs-style indent mode where lines aren't indented every time you @@ -553,9 +553,9 @@ The examples below assume a 'shiftwidth' of 4. 20 lines). *cino-star* - *N Vim searches for unclosed comments at most N lines away. This + `*N` Vim searches for unclosed comments at most N lines away. This limits the time needed to search for the start of a comment. - If your /* */ comments stop indenting after N lines this is the + If your `/* */` comments stop indenting after N lines this is the value you will want to change. (default 70 lines). @@ -574,7 +574,7 @@ The examples below assume a 'shiftwidth' of 4. them like every other preprocessor directive. -The defaults, spelled out in full, are: +The defaults, spelled out in full, are: > cinoptions=>s,e0,n0,f0,{0,}0,^0,L-1,:s,=s,l0,b0,gs,hs,N0,E0,ps,ts,is,+s, c3,C0,/0,(2s,us,U0,w0,W0,k0,m0,j0,J0,)20,*70,#0,P0 @@ -1060,19 +1060,19 @@ be configured by setting the following keys in the |Dictionary| b:sh_indent_defaults to a specific amount or to a |Funcref| that references a function that will return the amount desired: -b:sh_indent_options['default'] Default amount of indent. +b:sh_indent_options["default"] Default amount of indent. -b:sh_indent_options['continuation-line'] +b:sh_indent_options["continuation-line"] Amount of indent to add to a continued line. -b:sh_indent_options['case-labels'] +b:sh_indent_options["case-labels"] Amount of indent to add for case labels. (not actually implemented) -b:sh_indent_options['case-statements'] +b:sh_indent_options["case-statements"] Amount of indent to add for case statements. -b:sh_indent_options['case-breaks'] +b:sh_indent_options["case-breaks"] Amount of indent to add (or more likely remove) for case breaks. |