aboutsummaryrefslogtreecommitdiff
path: root/test/functional/core
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-05-02 22:52:28 +0200
committerGitHub <noreply@github.com>2019-05-02 22:52:28 +0200
commit9d58a58980c666a3abf515a1dd6b813b13d2d5ae (patch)
treee6abff32eb579a83495966a2939a72672d58b291 /test/functional/core
parent49c51f839b537ac8ff60671030a8d7b2399ad4a7 (diff)
parent660fe979c1f3cc251e42eff99bfaee55c04ee4cc (diff)
downloadrneovim-9d58a58980c666a3abf515a1dd6b813b13d2d5ae.tar.gz
rneovim-9d58a58980c666a3abf515a1dd6b813b13d2d5ae.tar.bz2
rneovim-9d58a58980c666a3abf515a1dd6b813b13d2d5ae.zip
Merge #9966 from justinmk/te-hl
terminal: swap priority of terminal, editor highlights
Diffstat (limited to 'test/functional/core')
-rw-r--r--test/functional/core/main_spec.lua12
1 files changed, 1 insertions, 11 deletions
diff --git a/test/functional/core/main_spec.lua b/test/functional/core/main_spec.lua
index a0981e9207..b793e531c9 100644
--- a/test/functional/core/main_spec.lua
+++ b/test/functional/core/main_spec.lua
@@ -7,19 +7,9 @@ local feed = helpers.feed
local eval = helpers.eval
local clear = helpers.clear
local funcs = helpers.funcs
-local nvim_prog = helpers.nvim_prog
+local nvim_prog_abs = helpers.nvim_prog_abs
local write_file = helpers.write_file
-local function nvim_prog_abs()
- -- system(['build/bin/nvim']) does not work for whatever reason. It needs to
- -- either be executable searched in $PATH or something starting with / or ./.
- if nvim_prog:match('[/\\]') then
- return funcs.fnamemodify(nvim_prog, ':p')
- else
- return nvim_prog
- end
-end
-
describe('Command-line option', function()
describe('-s', function()
local fname = 'Xtest-functional-core-main-s'