diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-07-10 16:49:23 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-07-10 16:49:23 +0200 |
commit | c0885aad5c40ea04f4b6a2462602273e06467516 (patch) | |
tree | db0c71077a37dc205dd17a6371d763688b30218e /runtime | |
parent | f65e5667dfd0281fa197638ab3361f0bc007fc14 (diff) | |
download | vim-git-c0885aad5c40ea04f4b6a2462602273e06467516.tar.gz |
updated for version 7.3.597v7.3.597
Problem: 'clipboard' "autoselect" only applies to the * register. (Sergey
Vakulenko)
Solution: Make 'autoselect' work for the + register. (Christian Brabant)
Add the "autoselectplus" option in 'clipboard' and the "P" flag in
'guioptions'.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index e13ffb0dc..f1920bfd1 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1452,6 +1452,7 @@ A jump table for the options with a short description can be found at |Q_op|. This option is a list of comma separated names. These names are recognized: + *clipboard-unnamed* unnamed When included, Vim will use the clipboard register '*' for all yank, delete, change and put operations which would normally go to the unnamed register. When a @@ -1481,9 +1482,16 @@ A jump table for the options with a short description can be found at |Q_op|. "autoselect" flag is used. Also applies to the modeless selection. + *clipboard-autoselectplus* + autoselectplus Like "autoselect" but using the + register instead of + the * register. Compare to the 'P' flag in + 'guioptions'. + + *clipboard-autoselectml* autoselectml Like "autoselect", but for the modeless selection only. Compare to the 'A' flag in 'guioptions'. + *clipboard-html* html When the clipboard contains HTML, use this when pasting. When putting text on the clipboard, mark it as HTML. This works to copy rendered HTML from @@ -1494,6 +1502,7 @@ A jump table for the options with a short description can be found at |Q_op|. Only supported for GTK version 2 and later. Only available with the |+multi_byte| feature. + *clipboard-exclude* exclude:{pattern} Defines a pattern that is matched against the name of the terminal 'term'. If there is a match, no @@ -3589,6 +3598,9 @@ A jump table for the options with a short description can be found at |Q_op|. windowing system's global selection unless explicitly told to by a yank or delete operation for the "* register. The same applies to the modeless selection. + *'go-P'* + 'P' Like autoselect but using the "+ register instead of the "* + register. *'go-A'* 'A' Autoselect for the modeless selection. Like 'a', but only applies to the modeless selection. |