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 /runtime/doc/vim_diff.txt | |
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 'runtime/doc/vim_diff.txt')
-rw-r--r-- | runtime/doc/vim_diff.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index 14bb934607..d7d31b5853 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -37,6 +37,7 @@ these differences. - 'autoread' is set by default - 'backspace' defaults to "indent,eol,start" - 'backupdir' defaults to .,~/.local/share/nvim/backup (|xdg|) +- 'belloff' defaults to "all" - 'complete' doesn't include "i" - 'directory' defaults to ~/.local/share/nvim/swap// (|xdg|), auto-created - 'display' defaults to "lastline" @@ -49,7 +50,9 @@ these differences. - 'listchars' defaults to "tab:> ,trail:-,nbsp:+" - 'nocompatible' is always set - 'nrformats' defaults to "bin,hex" +- 'ruler' is set by default - 'sessionoptions' doesn't include "options" +- 'showcmd' is set by default - 'smarttab' is set by default - 'tabpagemax' defaults to 50 - 'tags' defaults to "./tags;,tags" |