From 2e2a974decac89fa274c68f0e1d781553e4ee4c1 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Mon, 21 Nov 2011 07:58:10 +0100 Subject: [PATCH] vimrc: Remove unnecessary has('eval'). --- vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vimrc b/vimrc index 9e937bc..e645706 100644 --- 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 -- 2.44.1