]> granicus.if.org Git - vim/commitdiff
patch 8.0.0622: selecting quoted text fails with 'selection' "exclusive" v8.0.0622
authorBram Moolenaar <Bram@vim.org>
Mon, 5 Jun 2017 14:37:07 +0000 (16:37 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 5 Jun 2017 14:37:07 +0000 (16:37 +0200)
Problem:    Using a text object to select quoted text fails when 'selection'
            is set to "exclusive". (Guraga)
Solution:   Swap cursor and visual start position. (Christian Brabandt,
            closes #1687)

src/search.c
src/testdir/test_textobjects.vim
src/version.c

index bd5d08c3438b99200b7bbe9e87d2fad6ff6ba00a..c1197160aa1f8dd2e7568651f5eda9fe53195f1f 100644 (file)
@@ -4364,7 +4364,7 @@ current_quote(
     int                selected_quote = FALSE; /* Has quote inside selection */
     int                i;
 
-    /* Correct cursor when 'selection' is exclusive */
+    /* Correct cursor when 'selection' is "exclusive". */
     if (VIsual_active)
     {
        /* this only works within one line */
@@ -4372,8 +4372,19 @@ current_quote(
            return FALSE;
 
        vis_bef_curs = LT_POS(VIsual, curwin->w_cursor);
-       if (*p_sel == 'e' && vis_bef_curs)
+       if (*p_sel == 'e')
+       {
+           if (!vis_bef_curs)
+           {
+               /* VIsual needs to be start of Visual selection. */
+               pos_T t = curwin->w_cursor;
+
+               curwin->w_cursor = VIsual;
+               VIsual = t;
+               vis_bef_curs = TRUE;
+           }
            dec_cursor();
+       }
        vis_empty = EQUAL_POS(VIsual, curwin->w_cursor);
     }
 
index 5e67f25286bc202d4f42160d15cb64850b7f5ba5..dca8f6320bbca4a5670c8523992384272706dd57 100644 (file)
@@ -5,7 +5,7 @@ if !has('textobjects')
 endif
 
 set belloff=all
-function! CpoM(line, useM, expected)
+func CpoM(line, useM, expected)
   new
 
   if a:useM
@@ -29,16 +29,26 @@ function! CpoM(line, useM, expected)
   call assert_equal(getreg('"'), a:expected[2])
 
   q!
-endfunction
+endfunc
 
-function! Test_inner_block_without_cpo_M()
+func Test_inner_block_without_cpo_M()
   call CpoM('(red \(blue) green)', 0, ['red \(blue', 'red \(blue', ''])
-endfunction
+endfunc
 
-function! Test_inner_block_with_cpo_M_left_backslash()
+func Test_inner_block_with_cpo_M_left_backslash()
   call CpoM('(red \(blue) green)', 1, ['red \(blue) green', 'blue', 'red \(blue) green'])
-endfunction
+endfunc
 
-function! Test_inner_block_with_cpo_M_right_backslash()
+func Test_inner_block_with_cpo_M_right_backslash()
   call CpoM('(red (blue\) green)', 1, ['red (blue\) green', 'blue\', 'red (blue\) green'])
-endfunction
+endfunc
+
+func Test_quote_selection_selection_exclusive()
+  new
+  call setline(1, "a 'bcde' f")
+  set selection=exclusive
+  exe "norm! fdvhi'y"
+  call assert_equal('bcde', @")
+  set selection&vim
+  bw!
+endfunc
index bd02b5a92cb0be47b6d0b6753e5c1a7bb0e7fc20..0304389b33d66633d3da98d0419b0d57a4401784 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    622,
 /**/
     621,
 /**/