| 
									
										
										
										
											2021-10-04 21:32:54 +01:00
										 |  |  | " Vim indent file | 
					
						
							|  |  |  | " Language: nginx.conf | 
					
						
							|  |  |  | " Maintainer: Chris Aumann <me@chr4.org> | 
					
						
							| 
									
										
										
										
											2022-12-31 15:30:45 +00:00
										 |  |  | " Last Change:  2022 Dec 01 | 
					
						
							| 
									
										
										
										
											2021-10-04 21:32:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-31 15:30:45 +00:00
										 |  |  | " Only load this indent file when no other was loaded. | 
					
						
							|  |  |  | if exists('b:did_indent') | 
					
						
							|  |  |  |   finish | 
					
						
							| 
									
										
										
										
											2021-10-04 21:32:54 +01:00
										 |  |  | endif | 
					
						
							|  |  |  | let b:did_indent = 1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-31 15:30:45 +00:00
										 |  |  | setlocal indentexpr=GetNginxIndent() | 
					
						
							| 
									
										
										
										
											2021-10-04 21:32:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-31 15:30:45 +00:00
										 |  |  | setlocal indentkeys=0{,0},0#,!^F,o,O | 
					
						
							| 
									
										
										
										
											2021-10-04 21:32:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-31 15:30:45 +00:00
										 |  |  | let b:undo_indent = 'setl inde< indk<' | 
					
						
							| 
									
										
										
										
											2022-04-08 17:45:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-31 15:30:45 +00:00
										 |  |  | " Only define the function once. | 
					
						
							|  |  |  | if exists('*GetNginxIndent') | 
					
						
							|  |  |  |   finish | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function GetNginxIndent() abort | 
					
						
							|  |  |  |   let plnum = s:PrevNotAsBlank(v:lnum - 1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   " Hit the start of the file, use zero indent. | 
					
						
							|  |  |  |   if plnum == 0 | 
					
						
							|  |  |  |     return 0 | 
					
						
							|  |  |  |   endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   let ind = indent(plnum) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   " Add a 'shiftwidth' after '{' | 
					
						
							|  |  |  |   if s:AsEndWith(getline(plnum), '{') | 
					
						
							|  |  |  |     let ind = ind + shiftwidth() | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   " Subtract a 'shiftwidth' on '}' | 
					
						
							|  |  |  |   " This is the part that requires 'indentkeys'. | 
					
						
							|  |  |  |   if getline(v:lnum) =~ '^\s*}' | 
					
						
							|  |  |  |     let ind = ind - shiftwidth() | 
					
						
							|  |  |  |   endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   let pplnum = s:PrevNotAsBlank(plnum - 1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if s:IsLineContinuation(plnum) | 
					
						
							|  |  |  |     if !s:IsLineContinuation(pplnum) | 
					
						
							|  |  |  |       let ind = ind + shiftwidth() | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     if s:IsLineContinuation(pplnum) | 
					
						
							|  |  |  |       let ind = ind - shiftwidth() | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   endif | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return ind | 
					
						
							|  |  |  | endfunction | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | " Find the first line at or above {lnum} that is non-blank and not a comment. | 
					
						
							|  |  |  | function s:PrevNotAsBlank(lnum) abort | 
					
						
							|  |  |  |   let lnum = prevnonblank(a:lnum) | 
					
						
							|  |  |  |   while lnum > 0 | 
					
						
							|  |  |  |     if getline(lnum) !~ '^\s*#' | 
					
						
							|  |  |  |       break | 
					
						
							|  |  |  |     endif | 
					
						
							|  |  |  |     let lnum = prevnonblank(lnum - 1) | 
					
						
							|  |  |  |   endwhile | 
					
						
							|  |  |  |   return lnum | 
					
						
							|  |  |  | endfunction | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | " Check whether {line} ends with {pat}, ignoring trailing comments. | 
					
						
							|  |  |  | function s:AsEndWith(line, pat) abort | 
					
						
							|  |  |  |   return a:line =~ a:pat . '\m\s*\%(#.*\)\?$' | 
					
						
							|  |  |  | endfunction | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function s:IsLineContinuation(lnum) abort | 
					
						
							|  |  |  |   return a:lnum > 0 && !s:AsEndWith(getline(a:lnum), '[;{}]') | 
					
						
							|  |  |  | endfunction |