summaryrefslogtreecommitdiffstats
path: root/src/normal.c
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/normal.c
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/normal.c')
-rw-r--r--src/normal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c
index 8134adb2d5..66654f8d79 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -1451,7 +1451,7 @@ do_pending_operator(cap, old_col, gui_yank)
* This could call do_pending_operator() recursively, but that's OK
* because gui_yank will be TRUE for the nested call.
*/
- if (clip_star.available
+ if ((clip_star.available || clip_plus.available)
&& oap->op_type != OP_NOP
&& !gui_yank
# ifdef FEAT_VISUAL