mirror of
https://github.com/neovim/neovim.git
synced 2024-12-26 14:11:15 -07:00
14 lines
336 B
Lua
14 lines
336 B
Lua
|
local helpers = require('test.functional.helpers')(after_each)
|
||
|
local clear = helpers.clear
|
||
|
local feed = helpers.feed
|
||
|
local expect = helpers.expect
|
||
|
|
||
|
before_each(clear)
|
||
|
|
||
|
describe(':normal', function()
|
||
|
it('can get out of Insert mode if called from Ex mode #17924', function()
|
||
|
feed('gQnormal! Ifoo<CR>')
|
||
|
expect('foo')
|
||
|
end)
|
||
|
end)
|