aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-03-17 22:12:39 +0100
committerGitHub <noreply@github.com>2019-03-17 22:12:39 +0100
commitf3e7815e613305b10badf4f8bfaf5870dfb506bb (patch)
treef91d3b1083718421e3919c94f18830aceedb1034 /runtime
parentd86c816f8cae993dd21ab6ce932eb36a3e965dcb (diff)
parent94d933aa7e3fde09d45a59cfb289afdab4ce4aaa (diff)
downloadrneovim-f3e7815e613305b10badf4f8bfaf5870dfb506bb.tar.gz
rneovim-f3e7815e613305b10badf4f8bfaf5870dfb506bb.tar.bz2
rneovim-f3e7815e613305b10badf4f8bfaf5870dfb506bb.zip
Merge #9747 from janlazo/vim-8.1.0858
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/indent.txt5
-rw-r--r--runtime/doc/options.txt4
2 files changed, 5 insertions, 4 deletions
diff --git a/runtime/doc/indent.txt b/runtime/doc/indent.txt
index aae091aa99..6820b9c240 100644
--- a/runtime/doc/indent.txt
+++ b/runtime/doc/indent.txt
@@ -56,12 +56,13 @@ typing certain characters or commands in certain contexts. Note that this not
only triggers C-indenting. When 'indentexpr' is not empty 'indentkeys' is
used instead. The format of 'cinkeys' and 'indentkeys' is equal.
-The default is "0{,0},0),:,0#,!^F,o,O,e" which specifies that indenting occurs
-as follows:
+The default is "0{,0},0),0],:,0#,!^F,o,O,e" which specifies that indenting
+occurs as follows:
"0{" if you type '{' as the first character in a line
"0}" if you type '}' as the first character in a line
"0)" if you type ')' as the first character in a line
+ "0]" if you type ']' as the first character in a line
":" if you type ':' after a label or case statement
"0#" if you type '#' as the first character in a line
"!^F" if you type CTRL-F (which is not inserted)
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 7bb9ae68bc..c7e247133c 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1214,7 +1214,7 @@ A jump table for the options with a short description can be found at |Q_op|.
This option is not used when 'paste' is set.
*'cinkeys'* *'cink'*
-'cinkeys' 'cink' string (default "0{,0},0),:,0#,!^F,o,O,e")
+'cinkeys' 'cink' string (default "0{,0},0),0],:,0#,!^F,o,O,e")
local to buffer
A list of keys that, when typed in Insert mode, cause reindenting of
the current line. Only used if 'cindent' is on and 'indentexpr' is
@@ -3265,7 +3265,7 @@ A jump table for the options with a short description can be found at |Q_op|.
*'indentkeys'* *'indk'*
-'indentkeys' 'indk' string (default "0{,0},:,0#,!^F,o,O,e")
+'indentkeys' 'indk' string (default "0{,0},0),0],:,0#,!^F,o,O,e")
local to buffer
A list of keys that, when typed in Insert mode, cause reindenting of
the current line. Only happens if 'indentexpr' isn't empty.