Skip to content

Commit

Permalink
patch 8.0.0534: defaults.vim does not work well with tiny features
Browse files Browse the repository at this point in the history
Problem:    Defaults.vim does not work well with tiny features. (crd477)
Solution:   When the +eval feature is not available always reset 'compatible'.
  • Loading branch information
brammool committed Apr 1, 2017
1 parent 878c263 commit 33ccb24
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 11 additions & 1 deletion runtime/defaults.vim
@@ -1,7 +1,7 @@
" The default vimrc file.
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Last change: 2017 Mar 08
" Last change: 2017 Apr 01
"
" This is loaded if no vimrc file was found.
" Except when Vim is run with "-u NONE" or "-C".
Expand All @@ -26,6 +26,16 @@ if &compatible
set nocompatible
endif

" When the +eval feature is missing, the set command above will be skipped.
" Use a trick to reset compatible only when the +eval feature is missing.
if 1
nnoremap : :"
endif
silent normal :set nocompatible
if 1
nunmap :
endif

" Allow backspacing over everything in insert mode.
set backspace=indent,eol,start

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -764,6 +764,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
534,
/**/
533,
/**/
Expand Down

0 comments on commit 33ccb24

Please sign in to comment.