comparison src/dosinst.c @ 9680:1b8932823a02 v7.4.2116

commit https://github.com/vim/vim/commit/c73e4474b1f1b5b18a8d504eec5305e0c77981f7 Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Jul 2016 18:45:05 +0200
parents c25898cc99c1
children 4aead6a9b7a9
comparison
equal deleted inserted replaced
9679:5028439c944d 9680:1b8932823a02
1151 { 1151 {
1152 case compat_vi: 1152 case compat_vi:
1153 fprintf(fd, "set compatible\n"); 1153 fprintf(fd, "set compatible\n");
1154 break; 1154 break;
1155 case compat_some_enhancements: 1155 case compat_some_enhancements:
1156 fprintf(fd, "set nocompatible\n"); 1156 fprintf(fd, "source $VIMRUNTIME/defaults.vim\n");
1157 break; 1157 break;
1158 case compat_all_enhancements: 1158 case compat_all_enhancements:
1159 fprintf(fd, "set nocompatible\n");
1160 fprintf(fd, "source $VIMRUNTIME/vimrc_example.vim\n"); 1159 fprintf(fd, "source $VIMRUNTIME/vimrc_example.vim\n");
1161 break; 1160 break;
1162 } 1161 }
1163 switch (remap_choice) 1162 switch (remap_choice)
1164 { 1163 {