From a90beeadbb5dfbe443eae3c057c79a9cefa47ad6 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Fri, 10 Feb 2017 03:39:00 +0100 Subject: 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. --- src/nvim/testdir/setup.vim | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/nvim/testdir/setup.vim') diff --git a/src/nvim/testdir/setup.vim b/src/nvim/testdir/setup.vim index 52876d1e6c..05257d566d 100644 --- a/src/nvim/testdir/setup.vim +++ b/src/nvim/testdir/setup.vim @@ -1,5 +1,9 @@ " Common preparations for running tests. +set noruler +set noshowcmd +set belloff= + " Make sure 'runtimepath' does not include $HOME. set rtp=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after -- cgit