summaryrefslogtreecommitdiffstats
path: root/old/indent/indent_pir.vim
blob: 29dd9f6be3eb39667902de3308bbc5643a0f544a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
" Description:	imcc indenter
" Author:	Andrew Rodland <arodland@entermail.net>
" Last Change: 2004 Aug 3

" As usual, we want to be alone
if exists("b:did_indent")
	finish
endif
let b:did_indent=1

setlocal indentexpr=PIRIndent()
setlocal indentkeys=o,O,*<Return>,<bs>,:,=.end,0#

fun! InPOD(lnum)
	return synIDattr(synID(a:lnum, 1, 1), "name") =~? '^myPod$\|^pod[A-Z]'
endfun

fun! PIRIndent()
	let thisline = getline(v:lnum)

	let POD_START = '^=[a-z]'

	if thisline =~? POD_START
		return 0
	endif

	
	if InPOD(v:lnum)
		return -1
	endif

	let LABEL_OR_COMMENT = '^\s*\k\+:\s*$\|^#'
	if thisline =~? LABEL_OR_COMMENT
		return 0
	endif

	let lnum=v:lnum
	while lnum > 0
		let lnum = prevnonblank(lnum-1)
		let prevline = getline(lnum)
		
		if prevline !~? LABEL_OR_COMMENT
			if !InPOD(lnum)
				break
			endif
		endif
	endwhile

	if lnum < 1
		return 0
	endif

	let ind = indent(lnum)
	
	let SUB = '^\s*\.pcc_sub\s\+\|^\s*\.sub\s\+'
	let RETURNBLOCK = '\s*\.pcc_begin_return\s*$'
	let END = '^\s*\.end\s*$\|^\s*\.pcc_end_return\s*$'

	if prevline =~? SUB
		let ind = ind + &sw
	endif

	if prevline =~? RETURNBLOCK
		let ind = ind + &sw
	endif

	if thisline =~? END
		let ind = ind - &sw
	endif

	return ind

endfun