aboutsummaryrefslogtreecommitdiff
path: root/test/functional/editor/K_spec.lua
blob: 40f36491e453ba03cae6e8366bfe155681af4698 (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, retry =
  helpers.eq, helpers.clear, helpers.eval, helpers.feed, helpers.retry

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')
    retry(nil, nil, function() eq(1, eval('filereadable("'..test_file..'")')) end)
    eq({'fnord'}, eval("readfile('"..test_file.."')"))
  end)

end)