diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-01-27 08:34:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 08:34:57 +0100 |
commit | d50dd1272550346164b05cfc82b3a0aea6dd6b84 (patch) | |
tree | 6612fbc107618b04ea830b076f9510f5111a030d /runtime | |
parent | 55ad48d93955462905622a42a460ffccd99aa77a (diff) | |
parent | 6c22e5fd1a4e6d945bb76a4a8a558613f99ec793 (diff) | |
download | rneovim-d50dd1272550346164b05cfc82b3a0aea6dd6b84.tar.gz rneovim-d50dd1272550346164b05cfc82b3a0aea6dd6b84.tar.bz2 rneovim-d50dd1272550346164b05cfc82b3a0aea6dd6b84.zip |
Merge pull request #17095 from zeertzjq/vim-8.2.3227
vim-patch:8.2.{3227,3280,4094}: global-local 'virtualedit'
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 06236741c2..4536079cea 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -6782,12 +6782,16 @@ A jump table for the options with a short description can be found at |Q_op|. *'virtualedit'* *'ve'* 'virtualedit' 've' string (default "") - global + 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. all Allow virtual editing in all modes. onemore Allow the cursor to move just past the end of the line + none When used as the local value, do not allow virtual + editing even when the global value is set. When used + as the global value, "none" is the same as "". + NONE Alternative spelling of "none". Virtual editing means that the cursor can be positioned where there is no actual character. This can be halfway into a tab or beyond the end |