aboutsummaryrefslogtreecommitdiff
path: root/test/functional/normal/K_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-01-06 17:52:14 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-01-06 17:52:14 +0100
commit4fedad6c5b819fa91d4073c86d2d687e6c4d5ea4 (patch)
treedb49b32ee4af66bfb29230af3853ac945210ebdd /test/functional/normal/K_spec.lua
parentc82e7c75fe4c127a2886e22891794a9f12bff530 (diff)
parentab1e11e44fd17ffbd4c1fdb26c2b03de3c6831ae (diff)
downloadrneovim-4fedad6c5b819fa91d4073c86d2d687e6c4d5ea4.tar.gz
rneovim-4fedad6c5b819fa91d4073c86d2d687e6c4d5ea4.tar.bz2
rneovim-4fedad6c5b819fa91d4073c86d2d687e6c4d5ea4.zip
Merge #7753 'win: enable more functional tests'
Diffstat (limited to 'test/functional/normal/K_spec.lua')
-rw-r--r--test/functional/normal/K_spec.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/functional/normal/K_spec.lua b/test/functional/normal/K_spec.lua
index 43e598633c..174313d80e 100644
--- a/test/functional/normal/K_spec.lua
+++ b/test/functional/normal/K_spec.lua
@@ -2,8 +2,6 @@ local helpers = require('test.functional.helpers')(after_each)
local eq, clear, eval, feed =
helpers.eq, helpers.clear, helpers.eval, helpers.feed
-if helpers.pending_win32(pending) then return end
-
describe('K', function()
local test_file = 'K_spec_out'
before_each(function()
@@ -29,7 +27,7 @@ describe('K', function()
it("invokes non-prefixed 'keywordprg' as shell command", function()
helpers.source([[
let @a='fnord'
- set keywordprg=echo\ 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')