aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/setup.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-02-10 03:39:00 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-03-16 18:44:10 +0100
commita90beeadbb5dfbe443eae3c057c79a9cefa47ad6 (patch)
treeaf7893fc900e32a9f241a4db8b9b06ad403ac5ed /src/nvim/testdir/setup.vim
parentad1884be0dcf029f7467e5cfad8ffe7c8ba461b6 (diff)
downloadrneovim-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 'src/nvim/testdir/setup.vim')
-rw-r--r--src/nvim/testdir/setup.vim4
1 files changed, 4 insertions, 0 deletions
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