aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorSean Dewar <seandewar@users.noreply.github.com>2022-05-08 10:15:36 +0100
committerGitHub <noreply@github.com>2022-05-08 10:15:36 +0100
commit0d3f17a6c317b26cdc319b48e25e1574f3a0e9fd (patch)
tree121cb4b0b1dd5da906ec3350b85533552bbfed7c /runtime/doc
parent1b1cc4d864b4b15e705c1a500e64c7bfbacedae7 (diff)
downloadrneovim-0d3f17a6c317b26cdc319b48e25e1574f3a0e9fd.tar.gz
rneovim-0d3f17a6c317b26cdc319b48e25e1574f3a0e9fd.tar.bz2
rneovim-0d3f17a6c317b26cdc319b48e25e1574f3a0e9fd.zip
vim-patch:partial:d899e5112079 (#18474)
Update runtime files https://github.com/vim/vim/commit/d899e51120798d3fb5420abb1f19dddf3f014d05 - Skip vimhelp.vim stuff (syntax/help.vim, syntax.txt; v8.2.4891). - Skip :let heredoc eval stuff (eval.txt; v8.2.4770). - Skip uk.cp1251.po. - Skip `*hl-CurSearch*` change (syntax.txt): - Vim's CurSearch works differently (Nvim's uses current cursor pos). Dunno know how applicable the redrawing comment is to Nvim... - Might be preferred to move it under `*hl-Search*` like Vim?
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/eval.txt4
-rw-r--r--runtime/doc/quickref.txt2
2 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 3fd0d96f21..63a5b69070 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -455,8 +455,8 @@ only appear once. Examples: >
A key is always a String. You can use a Number, it will be converted to a
String automatically. Thus the String '4' and the number 4 will find the same
entry. Note that the String '04' and the Number 04 are different, since the
-Number will be converted to the String '4'. The empty string can also be used
-as a key.
+Number will be converted to the String '4', leading zeros are dropped. The
+empty string can also be used as a key.
*literal-Dict*
To avoid having to put quotes around every key the #{} form can be used. This
does require the key to consist only of ASCII letters, digits, '-' and '_'.
diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt
index c3badd5401..961d734bfe 100644
--- a/runtime/doc/quickref.txt
+++ b/runtime/doc/quickref.txt
@@ -1269,7 +1269,7 @@ Context-sensitive completion on the command-line:
|CTRL-W_^| CTRL-W ^ split window and edit alternate file
|CTRL-W_n| CTRL-W n or :new create new empty window
|CTRL-W_q| CTRL-W q or :q[uit] quit editing and close window
-|CTRL-W_c| CTRL-W c or :cl[ose] make buffer hidden and close window
+|CTRL-W_c| CTRL-W c or :clo[se] make buffer hidden and close window
|CTRL-W_o| CTRL-W o or :on[ly] make current window only one on the
screen