We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48c9f3b commit bff6ad1Copy full SHA for bff6ad1
2 files changed
src/testdir/test_paste.vim
@@ -1,6 +1,9 @@
1
" Tests for bracketed paste.
2
3
-" Bracketed paste only works with "xterm".
+" Bracketed paste only works with "xterm". Not in GUI.
4
+if has('gui_running')
5
+ finish
6
+endif
7
set term=xterm
8
9
func Test_paste_normal_mode()
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 233,
769
/**/
770
232,
771
0 commit comments