Moved AnsiEsc into git submodule and pathogen bundle

This commit is contained in:
yan
2011-12-06 22:51:25 -08:00
committed by Yan Pritzker
parent 9fabecb0fa
commit 2138287c8e
5 changed files with 4 additions and 1012 deletions

View File

@@ -1,30 +0,0 @@
" AnsiEscPlugin.vim
" Author: Charles E. Campbell, Jr.
" Date: Apr 07, 2010
" Version: 12
" ---------------------------------------------------------------------
" Load Once: {{{1
if &cp || exists("g:loaded_AnsiEscPlugin")
finish
endif
let g:loaded_AnsiEscPlugin = "v12"
let s:keepcpo = &cpo
set cpo&vim
" ---------------------------------------------------------------------
" Public Interface: {{{1
com! -bang -nargs=0 AnsiEsc :call AnsiEsc#AnsiEsc(<bang>0)
" DrChip Menu Support: {{{2
if has("gui_running") && has("menu") && &go =~ 'm'
if !exists("g:DrChipTopLvlMenu")
let g:DrChipTopLvlMenu= "DrChip."
endif
exe 'menu '.g:DrChipTopLvlMenu.'AnsiEsc.Start<tab>:AnsiEsc :AnsiEsc<cr>'
endif
" ---------------------------------------------------------------------
" Restore: {{{1
let &cpo= s:keepcpo
unlet s:keepcpo
" vim: ts=4 fdm=marker