Ada Programming $WikiTagline
 

Remove CVS Log Entries:

From Scripts

 execute "normal /\\c\\V$Log\<CR>V/\\V#\\{75,80}\<CR>d"

Special highlights

Tabs usage

 nnoremap <F12><Tab>      :syntax match Special "\t"<CR>
 inoremap <F12><Tab> <C-O>:syntax match Special "\t"<CR>

Tabs Error

 nnoremap <F12><S-Tab>      :syntax match Error " \+\t"<CR>
 inoremap <F12><Tab> <C-O>:syntax match Error " \+\t"<CR>

Space Errors

 nnoremap <F12><Space>      :syntax match Error "\s\+$"<CR>
 inoremap <F12><Space> <C-O>:syntax match Error "\s\+$"<CR>

Line to Long

 nnoremap <F12><CR>         :syntax match Error "^.\{78}."hs=e<CR>
 inoremap <F12><CR>    <C-O>:syntax match Error "^.\{78}."hs=e<CR>

© 2005 Martin Krischik, Content is available under GNU Free Documentation License.