From 18a2c1a79c19450bc858152b2f5d60c1a88f4058 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 29 Dec 2012 03:35:26 +0100 Subject: [PATCH 1/1] vimrc: is only necessary for mappings. --- vimrc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/vimrc b/vimrc index ccba733..40e95ba 100644 --- a/vimrc +++ b/vimrc @@ -189,7 +189,7 @@ set formatoptions+=ro " started. set formatoptions+=l " Remove comment leader when joining lines where it makes sense. -if HasVersionAndPatch(703, 541) +if s:HasVersionAndPatch(703, 541) set formatoptions+=j endif @@ -416,19 +416,19 @@ if has('statusline') " Short function names to make 'statusline' more readable. function! SBC() - return StatuslineBufferCount() + return s:StatuslineBufferCount() endfunction function! SRF() - return StatuslineRelativeFilename() + return s:StatuslineRelativeFilename() endfunction function! SFF() - return StatuslineFileFormat() + return s:StatuslineFileFormat() endfunction function! SFE() - return StatuslineFileEncoding() + return s:StatuslineFileEncoding() endfunction function! SSG() - return StatuslineSyntaxGroup() + return s:StatuslineSyntaxGroup() endfunction set statusline= @@ -771,7 +771,7 @@ if has('syntax') if !&diff && exists(':2match') " Use ColorColumn for overlong lines if available and my color " scheme is used. - if &t_Co == 256 && HasSyntaxGroup('ColorColumn') + if &t_Co == 256 && s:HasSyntaxGroup('ColorColumn') 2match ColorColumn /\%>78v./ else 2match Todo /\%>78v./ @@ -803,17 +803,17 @@ if has('syntax') " Special highlight for tabs to reduce their visibility in contrast to other " SpecialKey characters (e.g. ^L). - if &t_Co == 256 && HasSyntaxGroup('specialKeyTab') + if &t_Co == 256 && s:HasSyntaxGroup('specialKeyTab') call matchadd('specialKeyTab', '\t') endif endif endfunction " Enable highlights for the current and all new windows. Thanks to bairui in " #vim on Freenode (2012-04-01 00:22 CEST) for the WinEnter suggestion. - call CustomSyntaxHighlights() + call s:CustomSyntaxHighlights() if has('autocmd') augroup vimrc - autocmd WinEnter * call CustomSyntaxHighlights() + autocmd WinEnter * call s:CustomSyntaxHighlights() augroup END endif @@ -970,7 +970,7 @@ if has('autocmd') echoerr 'Do not edit this file! (Maybe a template file.)' endfunction - autocmd BufRead * call SearchForDoNotEditHeader() + autocmd BufRead * call s:SearchForDoNotEditHeader() " AFTER/FTPLUGIN AUTO COMMANDS -- 2.44.1