# HG changeset patch # User Christian Brabandt # Date 1469810705 -7200 # Node ID 1b8932823a021d8cb2356090185227898340ac70 # Parent 5028439c944d804e0021c36ee88c304a71c67456 commit https://github.com/vim/vim/commit/c73e4474b1f1b5b18a8d504eec5305e0c77981f7 Author: Bram Moolenaar Date: Fri Jul 29 18:33:38 2016 +0200 patch 7.4.2116 Problem: The default vimrc for Windows is very conservative. Solution: Use the defaults.vim in the Windows installer. diff --git a/src/dosinst.c b/src/dosinst.c --- a/src/dosinst.c +++ b/src/dosinst.c @@ -1153,10 +1153,9 @@ install_vimrc(int idx) fprintf(fd, "set compatible\n"); break; case compat_some_enhancements: - fprintf(fd, "set nocompatible\n"); + fprintf(fd, "source $VIMRUNTIME/defaults.vim\n"); break; case compat_all_enhancements: - fprintf(fd, "set nocompatible\n"); fprintf(fd, "source $VIMRUNTIME/vimrc_example.vim\n"); break; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -759,6 +759,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2116, +/**/ 2115, /**/ 2114,