| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | " Vim indent file | 
					
						
							| 
									
										
										
										
											2005-07-04 22:49:24 +00:00
										 |  |  | " Language:	    Tcl | 
					
						
							| 
									
										
										
										
											2006-04-21 22:12:41 +00:00
										 |  |  | " Maintainer:	    Nikolai Weibull <now@bitwi.se> | 
					
						
							| 
									
										
										
										
											2007-05-10 18:19:11 +00:00
										 |  |  | " Latest Revision:  2006-12-20 | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if exists("b:did_indent") | 
					
						
							|  |  |  |   finish | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | let b:did_indent = 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | setlocal indentexpr=GetTclIndent() | 
					
						
							| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  | setlocal indentkeys=0{,0},!^F,o,O,0] | 
					
						
							| 
									
										
										
										
											2007-05-10 18:19:11 +00:00
										 |  |  | setlocal nosmartindent | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if exists("*GetTclIndent") | 
					
						
							|  |  |  |   finish | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  | function s:prevnonblanknoncomment(lnum) | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  |   let lnum = prevnonblank(a:lnum) | 
					
						
							|  |  |  |   while lnum > 0 | 
					
						
							|  |  |  |     let line = getline(lnum) | 
					
						
							|  |  |  |     if line !~ '^\s*\(#\|$\)' | 
					
						
							|  |  |  |       break | 
					
						
							|  |  |  |     endif | 
					
						
							|  |  |  |     let lnum = prevnonblank(lnum - 1) | 
					
						
							|  |  |  |   endwhile | 
					
						
							|  |  |  |   return lnum | 
					
						
							|  |  |  | endfunction | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  | function s:count_braces(lnum, count_open) | 
					
						
							|  |  |  |   let n_open = 0 | 
					
						
							|  |  |  |   let n_close = 0 | 
					
						
							|  |  |  |   let line = getline(a:lnum) | 
					
						
							| 
									
										
										
										
											2005-07-04 22:49:24 +00:00
										 |  |  |   let pattern = '[{}]' | 
					
						
							| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  |   let i = match(line, pattern) | 
					
						
							|  |  |  |   while i != -1 | 
					
						
							| 
									
										
										
										
											2005-07-04 22:49:24 +00:00
										 |  |  |     if synIDattr(synID(a:lnum, i + 1, 0), 'name') !~ 'tcl\%(Comment\|String\)' | 
					
						
							| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  |       if line[i] == '{' | 
					
						
							| 
									
										
										
										
											2007-05-10 18:19:11 +00:00
										 |  |  |         let n_open += 1 | 
					
						
							| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  |       elseif line[i] == '}' | 
					
						
							| 
									
										
										
										
											2007-05-10 18:19:11 +00:00
										 |  |  |         if n_open > 0 | 
					
						
							|  |  |  |           let n_open -= 1 | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |           let n_close += 1 | 
					
						
							|  |  |  |         endif | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  |       endif | 
					
						
							|  |  |  |     endif | 
					
						
							| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  |     let i = match(line, pattern, i + 1) | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  |   endwhile | 
					
						
							| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  |   return a:count_open ? n_open : n_close | 
					
						
							|  |  |  | endfunction | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  | function GetTclIndent() | 
					
						
							| 
									
										
										
										
											2005-07-04 22:49:24 +00:00
										 |  |  |   let line = getline(v:lnum) | 
					
						
							|  |  |  |   if line =~ '^\s*\*' | 
					
						
							|  |  |  |     return cindent(v:lnum) | 
					
						
							|  |  |  |   elseif line =~ '^\s*}' | 
					
						
							| 
									
										
										
										
											2017-03-16 17:41:02 +01:00
										 |  |  |     return indent(v:lnum) - shiftwidth() | 
					
						
							| 
									
										
										
										
											2005-07-04 22:49:24 +00:00
										 |  |  |   endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  |   let pnum = s:prevnonblanknoncomment(v:lnum - 1) | 
					
						
							|  |  |  |   if pnum == 0 | 
					
						
							|  |  |  |     return 0 | 
					
						
							|  |  |  |   endif | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 17:41:02 +01:00
										 |  |  |   let ind = indent(pnum) + s:count_braces(pnum, 1) * shiftwidth() | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-04 22:49:24 +00:00
										 |  |  |   let pline = getline(pnum) | 
					
						
							|  |  |  |   if pline =~ '}\s*$' | 
					
						
							| 
									
										
										
										
											2017-03-16 17:41:02 +01:00
										 |  |  |     let ind -= (s:count_braces(pnum, 0) - (pline =~ '^\s*}' ? 1 : 0)) * shiftwidth() | 
					
						
							| 
									
										
										
										
											2005-06-29 22:40:58 +00:00
										 |  |  |   endif | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-04 22:49:24 +00:00
										 |  |  |   return ind | 
					
						
							| 
									
										
										
										
											2004-06-13 20:20:40 +00:00
										 |  |  | endfunction |