1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
local t = require('test.testutil')
local n = require('test.functional.testnvim')()
local Screen = require('test.functional.ui.screen')
local clear = n.clear
local command = n.command
local eq = t.eq
local eval = n.eval
local feed = n.feed
local api = n.api
local poke_eventloop = n.poke_eventloop
before_each(clear)
describe('Ex mode', function()
it('supports command line editing', function()
local function test_ex_edit(expected, cmd)
feed('gQ' .. cmd .. '<C-b>"<CR>')
local ret = eval('@:[1:]') -- Remove leading quote.
feed('visual<CR>')
eq(api.nvim_replace_termcodes(expected, true, true, true), ret)
end
command('set sw=2')
test_ex_edit('bar', 'foo bar<C-u>bar')
test_ex_edit('1<C-u>2', '1<C-v><C-u>2')
test_ex_edit('213', '1<C-b>2<C-e>3')
test_ex_edit('2013', '01<Home>2<End>3')
test_ex_edit('0213', '01<Left>2<Right>3')
test_ex_edit('0342', '012<Left><Left><Insert>3<Insert>4')
test_ex_edit('foo ', 'foo bar<C-w>')
test_ex_edit('foo', 'fooba<Del><Del>')
test_ex_edit('foobar', 'foo<Tab>bar')
test_ex_edit('abbreviate', 'abbrev<Tab>')
test_ex_edit('1<C-t><C-t>', '1<C-t><C-t>')
test_ex_edit('1<C-t><C-t>', '1<C-t><C-t><C-d>')
test_ex_edit(' foo', ' foo<C-d>')
test_ex_edit(' foo0', ' foo0<C-d>')
test_ex_edit(' foo^', ' foo^<C-d>')
test_ex_edit('foo', '<BS><C-H><Del><kDel>foo')
-- default wildchar <Tab> interferes with this test
command('set wildchar=<c-e>')
test_ex_edit('a\tb', 'a\t\t<C-H>b')
test_ex_edit('\tm<C-T>n', '\tm<C-T>n')
command('set wildchar&')
end)
it('substitute confirmation prompt', function()
command('set noincsearch nohlsearch inccommand=')
local screen = Screen.new(60, 6)
command([[call setline(1, repeat(['foo foo'], 4))]])
command([[set number]])
feed('gQ')
screen:expect([[
{8: 1 }foo foo |
{8: 2 }foo foo |
{8: 3 }foo foo |
{3: }|
Entering Ex mode. Type "visual" to go to Normal mode. |
:^ |
]])
feed('%s/foo/bar/gc<CR>')
screen:expect([[
{8: 1 }foo foo |
{3: }|
Entering Ex mode. Type "visual" to go to Normal mode. |
:%s/foo/bar/gc |
{8: 1 }foo foo |
^^^^ |
]])
feed('N<CR>')
screen:expect([[
Entering Ex mode. Type "visual" to go to Normal mode. |
:%s/foo/bar/gc |
{8: 1 }foo foo |
^^^N |
{8: 1 }foo foo |
^^^^ |
]])
feed('n<CR>')
screen:expect([[
{8: 1 }foo foo |
^^^N |
{8: 1 }foo foo |
^^^n |
{8: 1 }foo foo |
^^^^ |
]])
feed('y<CR>')
feed('q<CR>')
screen:expect([[
{8: 1 }foo foo |
^^^y |
{8: 2 }foo foo |
^^^q |
{8: 2 }foo foo |
:^ |
]])
-- Pressing enter in ex mode should print the current line
feed('<CR>')
screen:expect([[
^^^y |
{8: 2 }foo foo |
^^^q |
{8: 2 }foo foo |
{8: 3 }foo foo |
:^ |
]])
-- The printed line should overwrite the colon
feed('<CR>')
screen:expect([[
{8: 2 }foo foo |
^^^q |
{8: 2 }foo foo |
{8: 3 }foo foo |
{8: 4 }foo foo |
:^ |
]])
feed(':vi<CR>')
screen:expect([[
{8: 1 }foo bar |
{8: 2 }foo foo |
{8: 3 }foo foo |
{8: 4 }^foo foo |
{1:~ }|
|
]])
end)
it('pressing Ctrl-C in :append inside a loop in Ex mode does not hang', function()
local screen = Screen.new(60, 6)
feed('gQ')
feed('for i in range(1)<CR>')
feed('append<CR>')
screen:expect([[
{3: }|
Entering Ex mode. Type "visual" to go to Normal mode. |
:for i in range(1) |
|
: append |
^ |
]])
feed('<C-C>')
poke_eventloop() -- Wait for input to be flushed
feed('foo<CR>')
screen:expect([[
Entering Ex mode. Type "visual" to go to Normal mode. |
:for i in range(1) |
|
: append |
foo |
^ |
]])
feed('.<CR>')
screen:expect([[
:for i in range(1) |
|
: append |
foo |
. |
: ^ |
]])
feed('endfor<CR>')
feed('vi<CR>')
screen:expect([[
^foo |
{1:~ }|*4
|
]])
end)
end)
|