spellcheck for c- and kgs-files

changed session options

git-svn-id: https://vimsuite.svn.sourceforge.net/svnroot/vimsuite/trunk@146 eb2d0018-73a3-4aeb-bfe9-1def61c9ec69
This commit is contained in:
stefan 2007-09-11 07:03:37 +00:00
parent a649161e03
commit 2457040044
5 changed files with 18 additions and 3 deletions

View File

@ -36,6 +36,9 @@ setlocal formatexpr=KgsFormat()
" ---------- " ----------
let b:commentstring = "\/\/" let b:commentstring = "\/\/"
" spell check
setlocal spell
" Grep options " Grep options
let b:GrepFiles = '*.kgs' let b:GrepFiles = '*.kgs'

View File

@ -43,6 +43,8 @@ let b:commentstring = "\/\/"
"setlocal comments=sO:*\ -,mO:\ \ \ ,exO:*/,s1:/*,mb:\ ,ex:*/ "setlocal comments=sO:*\ -,mO:\ \ \ ,exO:*/,s1:/*,mb:\ ,ex:*/
setlocal cpoptions-=C setlocal cpoptions-=C
" spell check
setlocal spell
" Grep options " Grep options
let b:GrepFiles = '*.c *.h' let b:GrepFiles = '*.c *.h'

View File

@ -1,7 +1,7 @@
" Stefans python-file plugin " Stefans python-file plugin
" don't use spaces for tabs " use spaces for tabs
setlocal noexpandtab setlocal expandtab
setlocal tabstop=4 setlocal tabstop=4
setlocal shiftwidth=4 setlocal shiftwidth=4
setlocal formatoptions=croq setlocal formatoptions=croq

View File

@ -913,4 +913,14 @@ function Insert_Header(file)
endwhile endwhile
endfunction endfunction
" -------
" Outlook
" -------
command OutlookBugfix call s:OutlookBugfix()
function s:OutlookBugfix()
silent execute ':%s$^\(\%([^,]*,\)\{55}\)"\/o[^,]*\"\(,"EX","[^(]*(\)\([^)]*\)\()",\)$\1"\3"\2\3\4$c'
silent execute ':%s$^\(\%([^,]*,\)\{47}\)"\/o[^,]*\"\(,"EX","[^(]*(\)\([^)]*\)\()",\)$\1"\3"\2\3\4$c'
endfunction
EchoDebug 'loaded tools.vim' EchoDebug 'loaded tools.vim'

View File

@ -169,7 +169,7 @@ nnoremap gb :edit #<CR>
" ----------- " -----------
" come and go " come and go
" ----------- " -----------
set sessionoptions=blank,buffers,curdir,globals,winsize set sessionoptions=blank,buffers,curdir,folds,help,resize,tabpages,winsize
" open window size " open window size
autocmd GUIEnter * winsize 100 60 autocmd GUIEnter * winsize 100 60
" read and write files automatically " read and write files automatically