vim-tsm (807B)
1 26apr10abu 2 (c) Software Lab. Alexander Burger 3 4 5 Transient Symbol Markup for 'vim' 6 ================================= 7 8 1. Compile 'vim' with Vince Negri's "Conceal" patch: 9 http://vim.wikia.com/wiki/Patch_to_conceal_parts_of_lines 10 11 patch -p0 < conceal-ownsyntax.diff 12 make distclean 13 ./configure --with-features=huge 14 make VIMRUNTIMEDIR=~/local/vim72/runtime MAKE="make -e" 15 cd ~/bin 16 ln -s ~/local/vim72/src/vim 17 ln vim vi 18 ln vim view 19 20 21 2. Then put into your ".vimrc" or vim syntax file: 22 23 if has("conceal") 24 set conceallevel=2 25 syn region picoLispTransient concealends matchgroup=picoLispString start=/"/ skip=/\\\\\|\\"/ end=/"/ 26 hi picoLispTransient gui=underline term=underline cterm=underline 27 hi picoLispString ctermfg=red guifg=red 28 endif