aboutsummaryrefslogtreecommitdiff
path: root/test/functional/editor/K_spec.lua
blob: 3b5580540fed7cc9cccb580e05b74bd79503e0a4 (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
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
local helpers = require('test.functional.helpers')(after_each)
local eq, clear, eval, feed, meths, retry =
  helpers.eq, helpers.clear, helpers.eval, helpers.feed, helpers.meths, 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.."')"))
    -- Confirm that Neovim is still in terminal mode after K is pressed (#16692).
    helpers.sleep(500)
    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()
    helpers.source('set keywordprg=less')
    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.
    helpers.sleep(500)
    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()'))
    helpers.neq(bufnr, eval('bufnr()'))
  end)

  it('empty string falls back to :help #19298', function()
    meths.set_option('keywordprg', '')
    meths.buf_set_lines(0, 0, -1, true, {'doesnotexist'})
    feed('K')
    eq('E149: Sorry, no help for doesnotexist', meths.get_vvar('errmsg'))
  end)

end)