mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-03 17:24:29 +00:00 
			
		
		
		
	Vim runtime files based on 7.4.384 / hg changeset 7090d7f160f7
Excluding:
  Amiga icons (*.info, icons/)
  doc/hangulin.txt
  tutor/
  spell/
  lang/ (only used for menu translations)
  macros/maze/, macros/hanoi/, macros/life/, macros/urm/
      These were used to test vi compatibility.
  termcap
      "Demonstration of a termcap file (for the Amiga and Archimedes)"
Helped-by: Rich Wareham <rjw57@cam.ac.uk>
Helped-by: John <john.schmidt.h@gmail.com>
Helped-by: Yann <yann@yann-salaun.com>
Helped-by: Christophe Badoit <c.badoit@lesiteimmo.com>
Helped-by: drasill <github@tof2k.com>
Helped-by: Tae Sandoval Murgan <taecilla@gmail.com>
Helped-by: Lowe Thiderman <lowe.thiderman@gmail.com>
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			VimL
		
	
	
	
	
	
" Vim indent file
 | 
						|
" Language:    Hamster Script 
 | 
						|
" Version:     2.0.6.0
 | 
						|
" Last Change: Wed Nov 08 2006 12:02:42 PM
 | 
						|
" Maintainer:  David Fishburn <fishburn@ianywhere.com>
 | 
						|
 | 
						|
" Only load this indent file when no other was loaded.
 | 
						|
if exists("b:did_indent")
 | 
						|
  finish
 | 
						|
endif
 | 
						|
let b:did_indent = 1
 | 
						|
 | 
						|
setlocal indentkeys+==~if,=~else,=~endif,=~endfor,=~endwhile
 | 
						|
setlocal indentkeys+==~do,=~until,=~while,=~repeat,=~for,=~loop
 | 
						|
setlocal indentkeys+==~sub,=~endsub
 | 
						|
 | 
						|
" Define the appropriate indent function but only once
 | 
						|
setlocal indentexpr=HamGetFreeIndent()
 | 
						|
if exists("*HamGetFreeIndent")
 | 
						|
  finish
 | 
						|
endif
 | 
						|
 | 
						|
function HamGetIndent(lnum)
 | 
						|
  let ind = indent(a:lnum)
 | 
						|
  let prevline=getline(a:lnum)
 | 
						|
 | 
						|
  " Add a shiftwidth to statements following if,  else, elseif,
 | 
						|
  " case, select, default, do, until, while, for, start
 | 
						|
  if prevline =~? '^\s*\<\(if\|else\%(if\)\?\|for\|repeat\|do\|while\|sub\)\>' 
 | 
						|
    let ind = ind + &sw
 | 
						|
  endif
 | 
						|
 | 
						|
  " Subtract a shiftwidth from else, elseif, end(if|while|for), until
 | 
						|
  let line = getline(v:lnum)
 | 
						|
  if line =~? '^\s*\(else\|elseif\|loop\|until\|end\%(if\|while\|for\|sub\)\)\>'
 | 
						|
    let ind = ind - &sw
 | 
						|
  endif
 | 
						|
 | 
						|
  return ind
 | 
						|
endfunction
 | 
						|
 | 
						|
function HamGetFreeIndent()
 | 
						|
  " Find the previous non-blank line
 | 
						|
  let lnum = prevnonblank(v:lnum - 1)
 | 
						|
 | 
						|
  " Use zero indent at the top of the file
 | 
						|
  if lnum == 0
 | 
						|
    return 0
 | 
						|
  endif
 | 
						|
 | 
						|
  let ind=HamGetIndent(lnum)
 | 
						|
  return ind
 | 
						|
endfunction
 | 
						|
 | 
						|
" vim:sw=2 tw=80
 |