diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-06-20 18:45:03 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-08-24 00:48:32 -0400 |
commit | 45121a267f6374624570b88127f58c237abb623a (patch) | |
tree | 628a84bde6c3a20b330bf1167fa5541ede1223a4 /test/functional/helpers.lua | |
parent | 7280e8c365af585400ad9f5da56dcd2f9d043982 (diff) | |
download | rneovim-45121a267f6374624570b88127f58c237abb623a.tar.gz rneovim-45121a267f6374624570b88127f58c237abb623a.tar.bz2 rneovim-45121a267f6374624570b88127f58c237abb623a.zip |
defaults: set 'laststatus' to 2. #2876
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 1159707282..799b57494b 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -7,7 +7,7 @@ local Session = require('nvim.session') local nvim_prog = os.getenv('NVIM_PROG') or 'build/bin/nvim' local nvim_argv = {nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N', - '--cmd', 'set shortmess+=I background=light noswapfile noautoindent', + '--cmd', 'set shortmess+=I background=light noswapfile noautoindent laststatus=1', '--embed'} -- Formulate a path to the directory containing nvim. We use this to |