From afaa0b8300013a3066dbac1faa16d06c99e8d40b Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 20 Nov 2012 22:22:32 +0100 Subject: [PATCH] vimrc: :make writes all files and not only the current one. --- vimrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vimrc b/vimrc index f19fa91..51aabef 100644 --- a/vimrc +++ b/vimrc @@ -901,10 +901,10 @@ if has('autocmd') autocmd InsertLeave * set nopaste endif -" Write file when running :mak[e] before 'makeprg' is called. QuickFixCmdPre -" doesn't exist in older Vims. +" Write all files when running :mak[e] before 'makeprg' is called. +" QuickFixCmdPre doesn't exist in older Vims. if exists('##QuickFixCmdPre') - autocmd QuickFixCmdPre * write + autocmd QuickFixCmdPre * wall endif " Don't ignore case while in insert mode, but ignore case in all other modes. -- 2.44.1