From a909de07c5f982968cb8cd0f2101ac052f4a0034 Mon Sep 17 00:00:00 2001 From: Anton Bobov Date: Thu, 3 Oct 2013 09:48:51 +0600 Subject: Vim plugins cleaning up. --- files/.vim/plugin/luarefvim.vim | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 files/.vim/plugin/luarefvim.vim (limited to 'files/.vim/plugin/luarefvim.vim') diff --git a/files/.vim/plugin/luarefvim.vim b/files/.vim/plugin/luarefvim.vim deleted file mode 100644 index cb5664c..0000000 --- a/files/.vim/plugin/luarefvim.vim +++ /dev/null @@ -1,30 +0,0 @@ -" luarefvim plugin -" This is somewhat based on CRefVim -" Maintainer: Luis Carvalho -" Last Change: Jun, 3, 2005 -" Version: 0.2 - -" initial setup: avoid loading more than once -if exists("loaded_luarefvim") - finish -endif -let loaded_luarefvim = 1 - -" mappings: -vmap lr y:call LookUp('"') -nmap lr :call LookUp(expand("")) -map lc :help luaref - -function LookUp(str) - if a:str == "--" "comment? - silent! execute ":help lrv-comment" - elseif a:str == "" - silent! execute ":help luaref" - else - silent! execute ":help lrv-" . a:str - if v:errmsg != "" - echo "luarefvim: \`" . a:str . "\' not found" - endif - endif -endfunction - -- cgit v1.2.3