blob: 174313d80ea8747a403445f9545cdebf1cde2bfa (
plain) (
blame)
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
|
local helpers = require('test.functional.helpers')(after_each)
local eq, clear, eval, feed =
helpers.eq, helpers.clear, helpers.eval, helpers.feed
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()
helpers.source([[
let @a='fnord'
set keywordprg=:put]])
-- K on the text "a" resolves to `:put a`.
feed('ia<ESC>K')
helpers.expect([[
a
fnord]])
end)
it("invokes non-prefixed 'keywordprg' as shell command", function()
helpers.source([[
let @a='fnord'
set keywordprg=echo\ fnord>>]])
-- K on the text "K_spec_out" resolves to `!echo fnord >> K_spec_out`.
feed('i'..test_file..'<ESC>K')
feed('<CR>') -- Press ENTER
eq({'fnord'}, eval("readfile('"..test_file.."')"))
end)
end)
|