summaryrefslogtreecommitdiffstats
path: root/runtime/doc/version9.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-10 13:13:14 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-10 13:13:14 +0100
commit71b6d3397649fed68ef587aa863fcbdf5fdb057a (patch)
treefe1de667a3a2f1a69ad6533ab87be8e8c5c33273 /runtime/doc/version9.txt
parent2da11a4124989e3be917fa8024025d2e1452b363 (diff)
Update runtime files
Diffstat (limited to 'runtime/doc/version9.txt')
-rw-r--r--runtime/doc/version9.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/version9.txt b/runtime/doc/version9.txt
index 4e6b1cbf13..9ec13872ab 100644
--- a/runtime/doc/version9.txt
+++ b/runtime/doc/version9.txt
@@ -72,7 +72,7 @@ Command line completion in a popup menu ~
Before there was the 'wildmenu' option, which uses the space of one line above
the statusline to show matches. Only a few matches fit there.
-Now a popup menu can be used by setting "wildoptions' to "pum". This allows
+Now a popup menu can be used by setting 'wildoptions' to "pum". This allows
for showing many more matches. This requires redrawing more of the display,
but since computers are fast enough that is not a problem.
@@ -336,7 +336,7 @@ Hide cursor when sleeping using |:sleep!|.
Add "multispace" to 'listchars' to show two or more spaces no matter where
they appear. Add "leadmultispace" to 'listchars' to show two or more leading
spaces. Add "lead" to 'listchars' to set the character used to show leading
-spaces. Support specifying a character using the hexdecimal notation in
+spaces. Support specifying a character using the hexadecimal notation in
'listchars' (\x, \u and \U).
Make 'listchars', 'virtualedit' and 'thesaurusfunc' global-local options.
@@ -28248,7 +28248,7 @@ Files: runtime/doc/repeat.txt, src/scriptfile.c, src/vim9script.c,
src/proto/vim9script.pro, src/testdir/test_source.vim
Patch 8.2.4608
-Problem: getcompletion() does not work properly when 'wildoptions
+Problem: getcompletion() does not work properly when 'wildoptions'
contains "fuzzy".
Solution: Do not use addstar(). (Yegappan Lakshmanan, closes #9992,
closes #9986)