summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-07-10 16:49:23 +0200
committerBram Moolenaar <Bram@vim.org>2012-07-10 16:49:23 +0200
commitc0885aad5c40ea04f4b6a2462602273e06467516 (patch)
treedb0c71077a37dc205dd17a6371d763688b30218e /src/globals.h
parentf65e5667dfd0281fa197638ab3361f0bc007fc14 (diff)
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/globals.h')
-rw-r--r--src/globals.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/globals.h b/src/globals.h
index 615cdf7c68..81cdabba2f 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -517,7 +517,8 @@ EXTERN VimClipboard clip_plus; /* CLIPBOARD selection in X11 */
# define CLIP_UNNAMED_PLUS 2
EXTERN int clip_unnamed INIT(= 0); /* above two values or'ed */
-EXTERN int clip_autoselect INIT(= FALSE);
+EXTERN int clip_autoselect_star INIT(= FALSE);
+EXTERN int clip_autoselect_plus INIT(= FALSE);
EXTERN int clip_autoselectml INIT(= FALSE);
EXTERN int clip_html INIT(= FALSE);
EXTERN regprog_T *clip_exclude_prog INIT(= NULL);