2024-04-20 08:44:13 -07:00
|
|
|
local t = require('test.testutil')
|
|
|
|
local n = require('test.functional.testnvim')()
|
|
|
|
|
|
|
|
local eq, clear, eval, feed, api, retry = t.eq, n.clear, n.eval, n.feed, n.api, t.retry
|
2015-09-21 22:10:07 -07:00
|
|
|
|
|
|
|
describe('K', function()
|
|
|
|
local test_file = 'K_spec_out'
|
|
|
|
before_each(function()
|
|
|
|
clear()
|
|
|
|
os.remove(test_file)
|
|
|
|
end)
|
|
|
|
after_each(function()
|
|
|
|
os.remove(test_file)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("invokes colon-prefixed 'keywordprg' as Vim command", function()
|
2024-04-20 08:44:13 -07:00
|
|
|
n.source([[
|
2015-09-21 22:10:07 -07:00
|
|
|
let @a='fnord'
|
|
|
|
set keywordprg=:put]])
|
|
|
|
|
|
|
|
-- K on the text "a" resolves to `:put a`.
|
|
|
|
feed('ia<ESC>K')
|
2024-04-20 08:44:13 -07:00
|
|
|
n.expect([[
|
2015-09-21 22:10:07 -07:00
|
|
|
a
|
|
|
|
fnord]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("invokes non-prefixed 'keywordprg' as shell command", function()
|
2024-04-20 08:44:13 -07:00
|
|
|
n.source([[
|
2015-09-21 22:10:07 -07:00
|
|
|
let @a='fnord'
|
2017-10-04 17:32:22 -07:00
|
|
|
set keywordprg=echo\ fnord>>]])
|
2015-09-21 22:10:07 -07:00
|
|
|
|
|
|
|
-- K on the text "K_spec_out" resolves to `!echo fnord >> K_spec_out`.
|
|
|
|
feed('i' .. test_file .. '<ESC>K')
|
2021-08-21 17:23:10 -07:00
|
|
|
retry(nil, nil, function()
|
|
|
|
eq(1, eval('filereadable("' .. test_file .. '")'))
|
|
|
|
end)
|
2015-09-21 22:10:07 -07:00
|
|
|
eq({ 'fnord' }, eval("readfile('" .. test_file .. "')"))
|
2022-01-12 22:04:30 -07:00
|
|
|
-- Confirm that Neovim is still in terminal mode after K is pressed (#16692).
|
2024-01-12 04:41:09 -07:00
|
|
|
vim.uv.sleep(500)
|
2022-01-12 22:04:30 -07:00
|
|
|
eq('t', eval('mode()'))
|
|
|
|
feed('<space>') -- Any key, not just <space>, can be used here to escape.
|
|
|
|
eq('n', eval('mode()'))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("<esc> kills the buffer for a running 'keywordprg' command", function()
|
2024-04-20 08:44:13 -07:00
|
|
|
n.source('set keywordprg=less')
|
2022-01-12 22:04:30 -07:00
|
|
|
eval('writefile(["hello", "world"], "' .. test_file .. '")')
|
|
|
|
feed('i' .. test_file .. '<esc>K')
|
|
|
|
eq('t', eval('mode()'))
|
|
|
|
-- Confirm that an arbitrary keypress doesn't escape (i.e., the process is
|
|
|
|
-- still running). If the process were no longer running, an arbitrary
|
|
|
|
-- keypress would escape.
|
2024-01-12 04:41:09 -07:00
|
|
|
vim.uv.sleep(500)
|
2022-01-12 22:04:30 -07:00
|
|
|
feed('<space>')
|
|
|
|
eq('t', eval('mode()'))
|
|
|
|
-- Confirm that <esc> kills the buffer for the running command.
|
|
|
|
local bufnr = eval('bufnr()')
|
|
|
|
feed('<esc>')
|
|
|
|
eq('n', eval('mode()'))
|
2024-04-08 02:03:20 -07:00
|
|
|
t.neq(bufnr, eval('bufnr()'))
|
2015-09-21 22:10:07 -07:00
|
|
|
end)
|
|
|
|
|
2022-08-28 14:58:32 -07:00
|
|
|
it('empty string falls back to :help #19298', function()
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_set_option_value('keywordprg', '', {})
|
|
|
|
api.nvim_buf_set_lines(0, 0, -1, true, { 'doesnotexist' })
|
2022-08-28 14:58:32 -07:00
|
|
|
feed('K')
|
2024-01-12 10:59:57 -07:00
|
|
|
eq('E149: Sorry, no help for doesnotexist', api.nvim_get_vvar('errmsg'))
|
2022-08-28 14:58:32 -07:00
|
|
|
end)
|
2015-09-21 22:10:07 -07:00
|
|
|
end)
|