diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-02-10 03:39:00 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-03-16 18:44:10 +0100 |
commit | a90beeadbb5dfbe443eae3c057c79a9cefa47ad6 (patch) | |
tree | af7893fc900e32a9f241a4db8b9b06ad403ac5ed /test/functional/ui/screen_basic_spec.lua | |
parent | ad1884be0dcf029f7467e5cfad8ffe7c8ba461b6 (diff) | |
download | rneovim-a90beeadbb5dfbe443eae3c057c79a9cefa47ad6.tar.gz rneovim-a90beeadbb5dfbe443eae3c057c79a9cefa47ad6.tar.bz2 rneovim-a90beeadbb5dfbe443eae3c057c79a9cefa47ad6.zip |
defaults: 'showcmd', 'belloff', 'ruler'
- Vim "unix default" of 'noshowcmd' is serving few users. And it's
inconsistent.
- 'ruler' and 'belloff=all' improve the out-of-the-box experience.
- Continue to use 'noshowcmd' and 'noruler' by default in the functional
tests to keep them fast.
TODO: Add a "disable slow stuff" command or mapping to address the
use-case of a very slow terminal connection.
Diffstat (limited to 'test/functional/ui/screen_basic_spec.lua')
-rw-r--r-- | test/functional/ui/screen_basic_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/screen_basic_spec.lua b/test/functional/ui/screen_basic_spec.lua index 0824585717..e511234e5e 100644 --- a/test/functional/ui/screen_basic_spec.lua +++ b/test/functional/ui/screen_basic_spec.lua @@ -9,7 +9,7 @@ local eval = helpers.eval describe('Initial screen', function() local screen local nvim_argv = {helpers.nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N', - '--cmd', 'set shortmess+=I background=light noswapfile', + '--cmd', 'set shortmess+=I background=light noswapfile belloff= noshowcmd noruler', '--embed'} before_each(function() |