" Vimball Archiver by Charles E. Campbell, Jr., Ph.D. UseVimball finish plugin/RunView.vim [[[1 150 " RunView: " Author: Charles E. Campbell, Jr. " Date: Jan 12, 2009 " Version: 2 " Copyright: Copyright (C) 2005-2009 Charles E. Campbell, Jr. {{{1 " Permission is hereby granted to use and distribute this code, " with or without modifications, provided that this copyright " notice is copied with it. Like most software that's free, " RunView.vim is provided *as is* and comes with no warranty " of any kind, either expressed or implied. By using this " plugin, you agree that in no event will the copyright " holder be liable for any damages resulting from the use " of this software. " GetLatestVimScripts: 2511 1 :AutoInstall: RunView.vim " --------------------------------------------------------------------- " Load Once: {{{1 if &cp || exists("g:loaded_RunView") finish endif let g:loaded_RunView= "v2" " --------------------------------------------------------------------- " Defaults: {{{1 if !exists("g:runview_filtcmd") let g:runview_filtcmd= "ksh" endif if !exists("g:runview_swapwin") let g:runview_swapwin= 1 endif " --------------------------------------------------------------------- " Public Interface: {{{1 com! -bang -range -nargs=? RunView silent ,call s:RunView(0,) silent! com -bang -range -nargs=? RV silent ,call s:RunView(0,) " \rh map: RunView filter-command if !hasmapto('RunViewH') vmap rh RunViewH endif vmap