summaryrefslogtreecommitdiffstats
path: root/runtime/defaults.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-29 18:13:42 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-29 18:13:42 +0200
commitb9a46fec3e79d1fc8c406084a41733c647a5e535 (patch)
tree01df635eb1f9a9b086b92b88f239933de4f0db08 /runtime/defaults.vim
parentd05b191b91c4e16d6887bf781832d135d2a8fae5 (diff)
patch 7.4.2115v7.4.2115
Problem: Loading defaults.vim with -C argument. Solution: Don't load the defaults script with -C argument. Test sourcing the defaults script. Set 'display' to "truncate".
Diffstat (limited to 'runtime/defaults.vim')
-rw-r--r--runtime/defaults.vim5
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/defaults.vim b/runtime/defaults.vim
index f83e8bb55a..1968ce9be7 100644
--- a/runtime/defaults.vim
+++ b/runtime/defaults.vim
@@ -1,7 +1,7 @@
" The default vimrc file.
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last change: 2016 Jul 28
+" Last change: 2016 Jul 29
"
" This is loaded if no vimrc file was found.
" Except when Vim is run with "-u NONE" or "-C".
@@ -25,6 +25,9 @@ set ruler " show the cursor position all the time
set showcmd " display incomplete commands
set wildmenu " display completion matches in a status line
+" Show @@@ in the last line if it is truncated.
+set display=truncate
+
" Do incremental searching when it's possible to timeout.
if has('reltime')
set incsearch