diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2015-05-02 10:30:30 -0400 |
---|---|---|
committer | Scott Prager <splinterofchaos@gmail.com> | 2015-05-02 10:30:30 -0400 |
commit | 1c2c90ab0720784473805d20c359499a2d3d2ccf (patch) | |
tree | 8c4e587c91bbf91748c7ace6338aa3f609eaec0f /test/functional/terminal/cursor_spec.lua | |
parent | 205466830207a920c62146b7b689fac2e395431a (diff) | |
parent | 1eb33969220b267cf45adb286f0b7b6d14805eff (diff) | |
download | rneovim-1c2c90ab0720784473805d20c359499a2d3d2ccf.tar.gz rneovim-1c2c90ab0720784473805d20c359499a2d3d2ccf.tar.bz2 rneovim-1c2c90ab0720784473805d20c359499a2d3d2ccf.zip |
Merge pull request #2424 from splinterofchaos/term-no-sh
use an argument vector for termopen() / unify jobstart, termopen, and system
Diffstat (limited to 'test/functional/terminal/cursor_spec.lua')
-rw-r--r-- | test/functional/terminal/cursor_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/terminal/cursor_spec.lua b/test/functional/terminal/cursor_spec.lua index cecb33de7c..29225f968f 100644 --- a/test/functional/terminal/cursor_spec.lua +++ b/test/functional/terminal/cursor_spec.lua @@ -144,7 +144,7 @@ describe('cursor with customized highlighting', function() [6] = {foreground = 130}, }) screen:attach(false) - execute('term "' ..nvim_dir.. '/tty-test"') + execute('call termopen(["'..nvim_dir..'/tty-test"]) | startinsert') end) it('overrides the default highlighting', function() |