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 /src/option.h | |
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 'src/option.h')
-rw-r--r-- | src/option.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index 756cd1aaf..b0cbe1294 100644 --- a/src/option.h +++ b/src/option.h @@ -229,6 +229,7 @@ #define GO_MENUS 'm' /* use menu bar */ #define GO_NOSYSMENU 'M' /* don't source system menu */ #define GO_POINTER 'p' /* pointer enter/leave callbacks */ +#define GO_ASELPLUS 'P' /* autoselectPlus */ #define GO_RIGHT 'r' /* use right scrollbar */ #define GO_VRIGHT 'R' /* right scrollbar with vert split */ #define GO_TEAROFF 't' /* add tear-off menu items */ |