" 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: Nov 28, 2012 " Maintainer: Charles E. Campbell " Copyright: Copyright (C) 1999-2012 Charles E. Campbell {{{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 = "v13" let s:keepcpo = &cpo set cpo&vim " --------------------------------------------------------------------- " Public Interface: {{{1 " commands: com! -nargs=0 -bang DrawIt set lz|if 0|call DrawIt#DrawItStop()|else|call DrawIt#DrawItStart()|endif|set nolz com! -nargs=? DIstart set lz|call DrawIt#DrawItStart()|set nolz com! -nargs=0 DIstop set lz|call DrawIt#DrawItStop()|set nolz " commands: available only when not pre-defined sil! com -nargs=0 DInrml call DrawIt#SetMode('N') sil! com -nargs=0 DIsngl call DrawIt#SetMode('S') sil! com -nargs=0 DIdbl call DrawIt#SetMode('D') " maps: users may override these maps by defining their own mappings in their .vimrc " to DrawItStart and/or DrawItStop. By default: " \di : start DrawIt " \ds : stop DrawIt if !hasmapto('DrawItStart') map di DrawItStart endif noremap DrawItStart :set lz:call DrawIt#DrawItStart():set nolz if !hasmapto('DrawItStop') map ds DrawItStop endif noremap DrawItStop :set lz:call DrawIt#DrawItStop():set nolz " --------------------------------------------------------------------- " 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\\di di' endif " --------------------------------------------------------------------- " Cleanup And Modelines: " vim: fdm=marker let &cpo= s:keepcpo unlet s:keepcpo