diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-20 20:38:42 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-20 20:38:42 -0300 |
commit | aed19a7c5f148155672a2f87026d80fbde30a13f (patch) | |
tree | 2fea9f51b3c6c6df9d52b112cba2a0f5df9e5000 | |
parent | d35820379f57c73e594a0c29713d64ef9e6ada22 (diff) | |
download | rneovim-aed19a7c5f148155672a2f87026d80fbde30a13f.tar.gz rneovim-aed19a7c5f148155672a2f87026d80fbde30a13f.tar.bz2 rneovim-aed19a7c5f148155672a2f87026d80fbde30a13f.zip |
test: Remove -g flag from pynvim call in Screen.debug
The flag is no longer valid(pynvim always starts a GUI)
-rw-r--r-- | test/functional/ui/screen.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index a20907791b..02841c98a0 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -135,7 +135,7 @@ Screen.colors = colors function Screen.debug(command) if not command then - command = 'pynvim -n -g -c ' + command = 'pynvim -n -c ' end command = command .. request('vim_eval', '$NVIM_LISTEN_ADDRESS') if debug_screen then |