From: Simon Ruderich Date: Tue, 20 Nov 2012 21:22:32 +0000 (+0100) Subject: vimrc: :make writes all files and not only the current one. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=afaa0b8300013a3066dbac1faa16d06c99e8d40b;hp=e4c2c10baa2afee714f934d52fd3ca3ae4b04ba0;p=config%2Fdotfiles.git vimrc: :make writes all files and not only the current one. --- 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.