# HG changeset patch # User Christian Ebert # Date 1161802790 -7200 # Node ID 04d44c3d64f7b9be25ba989ad19e7978bcc95327 # Parent b5de4d5d60be1858463f31cff6b719fcfc18f70d hgcommand.vim: doc install delete into "black hole", g: prefix global vars. diff --git a/contrib/vim/hgcommand.vim b/contrib/vim/hgcommand.vim --- a/contrib/vim/hgcommand.vim +++ b/contrib/vim/hgcommand.vim @@ -29,10 +29,10 @@ " completes. This allows various actions to only be taken by functions after " system initialization. -if exists("loaded_hgcommand") +if exists("g:loaded_hgcommand") finish endif -let loaded_hgcommand = 1 +let g:loaded_hgcommand = 1 " store 'compatible' settings let s:save_cpo = &cpo @@ -45,7 +45,7 @@ function! s:HGCleanupOnFailure(err) echohl WarningMsg echomsg s:script_name . ":" a:err "Plugin not loaded" echohl None - let loaded_hgcommand = "no" + let g:loaded_hgcommand = "no" unlet s:save_cpo s:script_name endfunction @@ -566,11 +566,11 @@ function! s:HGInstallDocumentation(full_ 1 " Delete from first line to a line starts with " === START_DOC - silent 1,/^=\{3,}\s\+START_DOC\C/ d + silent 1,/^=\{3,}\s\+START_DOC\C/ delete _ " Delete from a line starts with " === END_DOC " to the end of the documents: - silent /^=\{3,}\s\+END_DOC\C/,$ d + silent /^=\{3,}\s\+END_DOC\C/,$ delete _ " Add modeline for help doc: the modeline string is mangled intentionally " to avoid it be recognized by VIM: @@ -1048,7 +1048,7 @@ com! HGDisableBufferSetup call HGDisable com! HGEnableBufferSetup call HGEnableBufferSetup() " Allow reloading hgcommand.vim -com! HGReload unlet! loaded_hgcommand | runtime plugin/hgcommand.vim +com! HGReload unlet! g:loaded_hgcommand | runtime plugin/hgcommand.vim " Section: Plugin command mappings {{{1 nnoremap HGAdd :HGAdd @@ -1200,7 +1200,7 @@ delfunction HGFlexiMkdir delfunction HGCleanupOnFailure unlet s:script_version s:script_name -let loaded_hgcommand=2 +let g:loaded_hgcommand=2 silent do HGCommand User HGPluginFinish let &cpo = s:save_cpo