diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-01-15 19:21:17 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-01-15 19:21:17 +0800 |
commit | 87e54f123aa1c9c769d3ff35bdd1b5a980ba701c (patch) | |
tree | 1cb66900f9e0a0275c53803ca685872ddb9a294e /runtime | |
parent | d391940b9a074bca7ee82460ccaaabf46b5f2ba9 (diff) | |
download | rneovim-87e54f123aa1c9c769d3ff35bdd1b5a980ba701c.tar.gz rneovim-87e54f123aa1c9c769d3ff35bdd1b5a980ba701c.tar.bz2 rneovim-87e54f123aa1c9c769d3ff35bdd1b5a980ba701c.zip |
vim-patch:8.2.3280: 'virtualedit' local to buffer is not the best solution
Problem: 'virtualedit' local to buffer is not the best solution.
Solution: Make it window-local. (Gary Johnson, closes vim/vim#8685)
https://github.com/vim/vim/commit/51ad850f5fbafa7aa3f60affa74ec9c9f992c6cc
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 08f719f16c..4536079cea 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -6782,7 +6782,7 @@ A jump table for the options with a short description can be found at |Q_op|. *'virtualedit'* *'ve'* 'virtualedit' 've' string (default "") - global or local to buffer |global-local| + global or local to window |global-local| A comma separated list of these words: block Allow virtual editing in Visual block mode. insert Allow virtual editing in Insert mode. |