Massive vim coolness
git-svn-id: http://photonzero.com/dotfiles/trunk@22 23f722f6-122a-0410-8cef-c75bd312dd78
This commit is contained in:
parent
c87a962056
commit
86cc58a3d4
13 changed files with 4583 additions and 138 deletions
65
.vim/plugin/DrawItPlugin.vim
Normal file
65
.vim/plugin/DrawItPlugin.vim
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
" DrawItPlugin.vim: a simple way to draw things in Vim -- just put this file in
|
||||
" your plugin directory, use \di to start (\ds to stop), and
|
||||
" just move about using the cursor keys.
|
||||
"
|
||||
" You may also use visual-block mode to select endpoints and
|
||||
" draw lines, arrows, and ellipses.
|
||||
"
|
||||
" Date: Jul 18, 2006
|
||||
" Maintainer: Charles E. Campbell, Jr. (Charles.E.Campbell.1@gsfc.nasa.gov)
|
||||
" Copyright: Copyright (C) 1999-2005 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 anything else that's free,
|
||||
" DrawIt.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.
|
||||
"
|
||||
" Required: this script requires Vim 7.0 (or later) {{{1
|
||||
" To Enable: simply put this plugin into your ~/.vim/plugin directory {{{2
|
||||
"
|
||||
" GetLatestVimScripts: 40 1 :AutoInstall: DrawIt.vim
|
||||
"
|
||||
" (Zeph 3:1,2 WEB) Woe to her who is rebellious and polluted, the {{{1
|
||||
" oppressing city! She didn't obey the voice. She didn't receive
|
||||
" correction. She didn't trust in Yahweh. She didn't draw near to her God.
|
||||
|
||||
" ---------------------------------------------------------------------
|
||||
" Load Once: {{{1
|
||||
if &cp || exists("g:loaded_DrawItPlugin")
|
||||
finish
|
||||
endif
|
||||
let g:loaded_DrawItPlugin = 1
|
||||
let s:keepcpo = &cpo
|
||||
set cpo&vim
|
||||
|
||||
" ---------------------------------------------------------------------
|
||||
" DrChip Menu Support: {{{1
|
||||
if has("gui_running") && has("menu") && &go =~ 'm'
|
||||
if !exists("g:DrChipTopLvlMenu")
|
||||
let g:DrChipTopLvlMenu= "DrChip."
|
||||
endif
|
||||
exe 'menu '.g:DrChipTopLvlMenu.'DrawIt.Start\ DrawIt<tab>\\di <Leader>di'
|
||||
endif
|
||||
|
||||
" ---------------------------------------------------------------------
|
||||
" Public Interface: {{{1
|
||||
if !hasmapto('<Plug>StartDrawIt')
|
||||
map <unique> <Leader>di <Plug>StartDrawIt
|
||||
endif
|
||||
map <silent> <Plug>StartDrawIt :set lz<cr>:call DrawIt#StartDrawIt()<cr>:set nolz<cr>
|
||||
com! -nargs=0 DIstart set lz|call DrawIt#StartDrawIt()|set nolz
|
||||
|
||||
if !hasmapto('<Plug>StopDrawIt')
|
||||
map <unique> <Leader>ds <Plug>StopDrawIt
|
||||
endif
|
||||
map <silent> <Plug>StopDrawIt :set lz<cr>:call DrawIt#StopDrawIt()<cr>:set nolz<cr>
|
||||
com! -nargs=0 DIstop set lz|call DrawIt#StopDrawIt()|set nolz
|
||||
|
||||
" ---------------------------------------------------------------------
|
||||
" Cleanup And Modelines:
|
||||
" vim: fdm=marker
|
||||
let &cpo= s:keepcpo
|
||||
unlet s:keepcpo
|
||||
Loading…
Add table
Add a link
Reference in a new issue