summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_gui.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-04-29 11:06:34 +0100
committerBram Moolenaar <Bram@vim.org>2022-04-29 11:06:34 +0100
commit758a8d199988b5b25566b2820db60dc2c9de3e58 (patch)
treeadeaa36cc592a497cdca6782c9f07054475d7c93 /src/testdir/test_gui.vim
parent202b4bd3a452898cfe3ed72facfbf7cb8199fa4b (diff)
patch 8.2.4844: <C-S-I> is simplified to <S-Tab>v8.2.4844
Problem: <C-S-I> is simplified to <S-Tab>. Solution: Do not simplify CTRL if there is also SHIFT. (closes #10313)
Diffstat (limited to 'src/testdir/test_gui.vim')
-rw-r--r--src/testdir/test_gui.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/testdir/test_gui.vim b/src/testdir/test_gui.vim
index 4ae01b8551..96723b668e 100644
--- a/src/testdir/test_gui.vim
+++ b/src/testdir/test_gui.vim
@@ -1560,4 +1560,10 @@ func Test_gui_findrepl()
bw!
endfunc
+func Test_gui_CTRL_V()
+ call feedkeys(":let g:str = '\<C-V>\<*C-S-I>\<C-V>\<*C-S-@>'\<CR>", 'tx')
+ call assert_equal('<C-S-I><C-S-@>', g:str)
+ unlet g:str
+endfunc
+
" vim: shiftwidth=2 sts=2 expandtab