diff runtime/defaults.vim @ 9678:8c9e13109df8 v7.4.2115

commit https://github.com/vim/vim/commit/b9a46fec3e79d1fc8c406084a41733c647a5e535 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 29 18:13:42 2016 +0200 patch 7.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".
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Jul 2016 18:15:05 +0200
parents 284b4eb307fc
children 8c0b13fe60dc
line wrap: on
line diff
--- 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 al
 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