blob: 40fe63fa7cc00e278195a1026e9673087cc2ff09 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim indent file
2" Language: SDL
Bram Moolenaarb6b046b2011-12-30 13:11:27 +01003" Maintainer: Michael Piefel <entwurf@piefel.de>
Bram Moolenaar6e649222021-10-04 21:32:54 +01004" Last Change: 2021 Oct 03
Bram Moolenaar071d4272004-06-13 20:20:40 +00005
6" Shamelessly stolen from the Vim-Script indent file
7
8" Only load this indent file when no other was loaded.
9if exists("b:did_indent")
10 finish
11endif
12let b:did_indent = 1
13
14setlocal indentexpr=GetSDLIndent()
15setlocal indentkeys+==~end,=~state,*<Return>
16
Bram Moolenaar6e649222021-10-04 21:32:54 +010017let b:undo_indent = "setl inde< indk<"
18
Bram Moolenaar071d4272004-06-13 20:20:40 +000019" Only define the function once.
20if exists("*GetSDLIndent")
21" finish
22endif
23
Bram Moolenaarb6b046b2011-12-30 13:11:27 +010024let s:cpo_save = &cpo
25set cpo&vim
Bram Moolenaar071d4272004-06-13 20:20:40 +000026
27function! GetSDLIndent()
28 " Find a non-blank line above the current line.
29 let lnum = prevnonblank(v:lnum - 1)
30
31 " At the start of the file use zero indent.
32 if lnum == 0
33 return 0
34 endif
35
36 let ind = indent(lnum)
37 let virtuality = '^\s*\(\(virtual\|redefined\|finalized\)\s\+\)\=\s*'
38
39 " Add a single space to comments which use asterisks
40 if getline(lnum) =~ '^\s*\*'
41 let ind = ind - 1
42 endif
43 if getline(v:lnum) =~ '^\s*\*'
44 let ind = ind + 1
45 endif
46
47 " Add a 'shiftwidth' after states, different blocks, decision (and alternatives), inputs
48 if (getline(lnum) =~? '^\s*\(start\|state\|system\|package\|connection\|channel\|alternative\|macro\|operator\|newtype\|select\|substructure\|decision\|generator\|refinement\|service\|method\|exceptionhandler\|asntype\|syntype\|value\|(.*):\|\(priority\s\+\)\=input\|provided\)'
49 \ || getline(lnum) =~? virtuality . '\(process\|procedure\|block\|object\)')
50 \ && getline(lnum) !~? 'end[[:alpha:]]\+;$'
Bram Moolenaar3ec574f2017-06-13 18:12:01 +020051 let ind = ind + shiftwidth()
Bram Moolenaar071d4272004-06-13 20:20:40 +000052 endif
53
54 " Subtract a 'shiftwidth' after states
55 if getline(lnum) =~? '^\s*\(stop\|return\>\|nextstate\)'
Bram Moolenaar3ec574f2017-06-13 18:12:01 +020056 let ind = ind - shiftwidth()
Bram Moolenaar071d4272004-06-13 20:20:40 +000057 endif
58
59 " Subtract a 'shiftwidth' on on end (uncompleted line)
60 if getline(v:lnum) =~? '^\s*end\>'
Bram Moolenaar3ec574f2017-06-13 18:12:01 +020061 let ind = ind - shiftwidth()
Bram Moolenaar071d4272004-06-13 20:20:40 +000062 endif
63
64 " Put each alternatives where the corresponding decision was
65 if getline(v:lnum) =~? '^\s*\((.*)\|else\):'
66 normal k
67 let ind = indent(searchpair('^\s*decision', '', '^\s*enddecision', 'bW',
68 \ 'synIDattr(synID(line("."), col("."), 0), "name") =~? "sdlString"'))
69 endif
70
71 " Put each state where the preceding state was
72 if getline(v:lnum) =~? '^\s*state\>'
73 let ind = indent(search('^\s*start', 'bW'))
74 endif
75
76 " Systems and packages are always in column 0
77 if getline(v:lnum) =~? '^\s*\(\(end\)\=system\|\(end\)\=package\)'
Bram Moolenaar34700a62013-03-07 13:20:54 +010078 return 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000079 endif
80
81 " Put each end* where the corresponding begin was
82 if getline(v:lnum) =~? '^\s*end[[:alpha:]]'
83 normal k
84 let partner=matchstr(getline(v:lnum), '\(' . virtuality . 'end\)\@<=[[:alpha:]]\+')
85 let ind = indent(searchpair(virtuality . partner, '', '^\s*end' . partner, 'bW',
86 \ 'synIDattr(synID(line("."), col("."), 0), "name") =~? "sdlString"'))
87 endif
88
89 return ind
90endfunction
91
Bram Moolenaarb6b046b2011-12-30 13:11:27 +010092let &cpo = s:cpo_save
93unlet s:cpo_save
94
Bram Moolenaar071d4272004-06-13 20:20:40 +000095" vim:sw=2