From b8ae69a79ae9b9adc51ffdffa6530a01f792335a Mon Sep 17 00:00:00 2001 From: Giacomo Comitti Date: Wed, 19 Feb 2014 11:40:04 +0100 Subject: [PATCH] Reset &cpo to its default only after being sure that the script is going to be fully sourced --- plugin/wildfire.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/wildfire.vim b/plugin/wildfire.vim index fb53617..fd64211 100644 --- a/plugin/wildfire.vim +++ b/plugin/wildfire.vim @@ -7,9 +7,6 @@ " ============================================================================= -let s:save_cpo = &cpo -set cpo&vim - " Init " ============================================================================= @@ -18,6 +15,9 @@ if exists("g:loaded_wildfire") endif let g:loaded_wildfire = 1 +let s:save_cpo = &cpo +set cpo&vim + " Settings " =============================================================================