]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - vimrc
vimrc: Prefer '..' for strings.
[config/dotfiles.git] / vimrc
diff --git a/vimrc b/vimrc
index 95a563101c8e9fb8889d97176c9de15a49ef609f..11aae8de9dc1cd2aef326a19897b31f3b760440f 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -478,7 +478,7 @@ if has('syntax')
     let g:python_highlight_all = 1
     " Vim.
     let g:vimsyn_embed = 0      " don't highlight embedded languages
-    let g:vimsyn_folding = "af" " folding for autogroups (a) and functions (f)
+    let g:vimsyn_folding = 'af' " folding for autogroups (a) and functions (f)
     " XML.
     let g:xml_syntax_folding = 1
 endif
@@ -520,7 +520,7 @@ if has('autocmd')
 
 " Go to last position of opened files. Taken from :help last-position-jump.
         autocmd BufReadPost *
-            \ if line("'\"") > 1 && line("'\"") <= line("$") |
+            \ if line("'\"") > 1 && line("'\"") <= line('$') |
             \     execute "normal! g'\"" |
             \ endif
 " But not for Git commits, go to beginning of the file.
@@ -539,13 +539,17 @@ if has('autocmd')
 
 " Automatically disable 'paste' mode when leaving insert mode. Thanks to
 " Raimondi in #vim on Freenode (2010-08-14 23:01 CEST). Very useful as I only
-" want to paste once and then 'paste' gets automatically unset.
+" want to paste once and then 'paste' gets automatically unset. InsertLeave
+" doesn't exist in older Vims.
         if exists('##InsertLeave')
             autocmd InsertLeave * set nopaste
         endif
 
-" Write file when running :mak[e] before 'makeprg' is called.
-        autocmd QuickFixCmdPre * write
+" Write file when running :mak[e] before 'makeprg' is called. QuickFixCmdPre
+" doesn't exist in older Vims.
+        if exists('##QuickFixCmdPre')
+            autocmd QuickFixCmdPre * write
+        endif
 
 " AFTER/FTPLUGIN AUTO COMMANDS
 
@@ -594,7 +598,7 @@ if has('eval')
 " file it was loaded from, thus the changes you made. Thanks to the
 " vimrc_example.vim file in Vim's source. Modified to use the same filetype
 " for the diffed file than the filetype for the original file.
-    if !exists(":DiffOrig")
+    if !exists(':DiffOrig')
         command DiffOrig
             \ let s:diff_orig_filetype = &filetype
             \ | vertical new