Lines Matching refs:indent
1 " Vim indent file
7 " http://members.wolfram.com/layland/vim/indent/mma.vim
16 " o steve hacked this out of a random indent file in the Vim 6.1
19 " Only load this indent file when no other was loaded.
27 setlocal nosi "turn off smart indent so we don't over analyze } blocks
35 " Hit the start of the file, use zero indent.
44 let ind = indent(v:lnum)
47 " if previous line has an unmatched bracket, or ( indent.
50 " also, indent only if this line if this line isn't starting a new
57 " indent to the matching opening block
61 " and find its partner's indent
62 let ind = indent(searchpair('\[','',']','bWn'))
66 let ind = indent(searchpair('(','',')','bWn'))
71 let ind = indent(searchpair('{','','}','bWn'))