]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Remove unnecessary has('eval').
authorSimon Ruderich <simon@ruderich.org>
Mon, 21 Nov 2011 06:58:10 +0000 (07:58 +0100)
committerSimon Ruderich <simon@ruderich.org>
Mon, 21 Nov 2011 06:58:10 +0000 (07:58 +0100)
vimrc

diff --git a/vimrc b/vimrc
index 9e937bcf5b6e05b2a940bdf3275ca9c872f20a89..e64570638a37f13a70f974ad47e7a5d436236cf9 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -321,7 +321,7 @@ if has('mac') || filereadable('/Users/.localized')
 endif
 
 " Disable Apple style movements in MacVim.
-if has('gui_macvim') && has('eval')
+if has('gui_macvim')
     let g:macvim_skip_cmd_opt_movement = 1
 endif
 
@@ -394,7 +394,7 @@ endif
 " Use pathogen which allows one 'runtimepath' entry per plugin. This makes
 " installing/removing/updating plugins simple. (Used for plugins with more
 " than one file.)
-if has('eval') && v:version >= 700
+if v:version >= 700
     execute 'call pathogen#runtime_append_all_bundles()'
 endif