""" """ ~/.exrc - erco@3dsite.com """ """ \\\ Do NOT try to cut & paste this file; it contains control characters. """ /// Treat it as a binary file; from a Netscape browser, hit BACK, then """ SHIFT-click on the link to save it on your machine. """ set autoindent set shiftwidth=4 set report=1 set shell=/bin/tcsh """ """ MAPS - KEYS AVAILABLE FOR MAPPING IN VI: g K q V v ^a ^k ^o ^t ^w ^x _ * \ = """ Maps I like to keep myself from getting RSI.. """ """ ; - page up """ , - page down """ """ q - scroll up 1 line """ z - scroll down 1 line """ """ { - Disable auto-indent """ } - Enable auto-indent """ """ ^A - repeat last operation, move down one line """ ^N - Move to next document """ F - Reformat text between last 'mark a' """ s - Spell check current document """ """ """ UP/DOWN SINGLE LINE SCROLL - avoid needing ctrl key map q  map z  """ EDIT LAST FILE - single keystroke map = :vi# """ REPEAT LAST OPERATION, MOVE TO NEXT VERTICAL POSITION map  ma.`aj """ UP/DOWN A PAGE - avoid needing ctrl key map ;  map ,  """ REMOVE TRAILING CRLFS FROM IBMPC FILES map :g/.$/s///g """ MOVE TO NEXT FILE - single keystroke map  :n """ REFORMAT PARAGRAPH - mark start with ma, move to end, hit F map F :'a,.!/usr/sbin/fmt """ SPELL CHECK CURRENT DOCUMENT map s :!spell < % """ DISABLE/ENABLE AUTO-INDENT - for easy mouse cut/pasting map { :set noai map } :set ai