From 66b846d24cf89e99935ca6bb2e3f86cf98ab57f5 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 28 Apr 2009 14:59:09 +0200 Subject: [PATCH] vim/after/ftplugin: Use spaces around = in let. --- vim/after/ftplugin/perl.vim | 4 ++-- vim/after/ftplugin/php.vim | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/vim/after/ftplugin/perl.vim b/vim/after/ftplugin/perl.vim index f74585b..9f116a7 100644 --- a/vim/after/ftplugin/perl.vim +++ b/vim/after/ftplugin/perl.vim @@ -5,5 +5,5 @@ " Allow folding. -let perl_fold=1 -let perl_fold_blocks=1 +let perl_fold = 1 +let perl_fold_blocks = 1 diff --git a/vim/after/ftplugin/php.vim b/vim/after/ftplugin/php.vim index 342ca15..190395d 100644 --- a/vim/after/ftplugin/php.vim +++ b/vim/after/ftplugin/php.vim @@ -5,11 +5,11 @@ " Don't allow short PHP tags () as they are not always available. -let b:php_short_tags=0 +let b:php_short_tags = 0 " Highlight SQL queries in strings. -let b:php_sql_query=1 +let b:php_sql_query = 1 " Fold PHP functions. -let b:php_folding=3 +let b:php_folding = 3 " Automatically fix my wrong usage of kdb tags in phpdoc comments which don't " exist and should be kbd tags. I make this typo all the time. -- 2.44.1