Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 1 | " Vim indent file |
Bram Moolenaar | 7a32991 | 2010-05-21 12:05:36 +0200 | [diff] [blame] | 2 | " Language: Haml |
| 3 | " Maintainer: Tim Pope <vimNOSPAM@tpope.org> |
Bram Moolenaar | 47c532e | 2022-03-19 15:18:53 +0000 | [diff] [blame] | 4 | " Last Change: 2022 Mar 15 |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 5 | |
| 6 | if exists("b:did_indent") |
| 7 | finish |
| 8 | endif |
| 9 | runtime! indent/ruby.vim |
| 10 | unlet! b:did_indent |
| 11 | let b:did_indent = 1 |
| 12 | |
Bram Moolenaar | c08ee74 | 2019-12-05 22:47:25 +0100 | [diff] [blame] | 13 | setlocal autoindent |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 14 | setlocal indentexpr=GetHamlIndent() |
| 15 | setlocal indentkeys=o,O,*<Return>,},],0),!^F,=end,=else,=elsif,=rescue,=ensure,=when |
| 16 | |
Bram Moolenaar | 47c532e | 2022-03-19 15:18:53 +0000 | [diff] [blame] | 17 | let b:undo_indent = "setl ai< inde< indk<" |
| 18 | |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 19 | " Only define the function once. |
| 20 | if exists("*GetHamlIndent") |
| 21 | finish |
| 22 | endif |
| 23 | |
| 24 | let s:attributes = '\%({.\{-\}}\|\[.\{-\}\]\)' |
| 25 | let s:tag = '\%([%.#][[:alnum:]_-]\+\|'.s:attributes.'\)*[<>]*' |
| 26 | |
| 27 | if !exists('g:haml_self_closing_tags') |
Bram Moolenaar | 543b7ef | 2013-06-01 14:50:56 +0200 | [diff] [blame] | 28 | let g:haml_self_closing_tags = 'base|link|meta|br|hr|img|input' |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 29 | endif |
| 30 | |
| 31 | function! GetHamlIndent() |
| 32 | let lnum = prevnonblank(v:lnum-1) |
| 33 | if lnum == 0 |
| 34 | return 0 |
| 35 | endif |
| 36 | let line = substitute(getline(lnum),'\s\+$','','') |
| 37 | let cline = substitute(substitute(getline(v:lnum),'\s\+$','',''),'^\s\+','','') |
| 38 | let lastcol = strlen(line) |
| 39 | let line = substitute(line,'^\s\+','','') |
| 40 | let indent = indent(lnum) |
| 41 | let cindent = indent(v:lnum) |
Bram Moolenaar | 3ec574f | 2017-06-13 18:12:01 +0200 | [diff] [blame] | 42 | let sw = shiftwidth() |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 43 | if cline =~# '\v^-\s*%(elsif|else|when)>' |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 44 | let indent = cindent < indent ? cindent : indent - sw |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 45 | endif |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 46 | let increase = indent + sw |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 47 | if indent == indent(lnum) |
| 48 | let indent = cindent <= indent ? -1 : increase |
| 49 | endif |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 50 | |
| 51 | let group = synIDattr(synID(lnum,lastcol,1),'name') |
| 52 | |
| 53 | if line =~ '^!!!' |
| 54 | return indent |
| 55 | elseif line =~ '^/\%(\[[^]]*\]\)\=$' |
| 56 | return increase |
Bram Moolenaar | 7a32991 | 2010-05-21 12:05:36 +0200 | [diff] [blame] | 57 | elseif group == 'hamlFilter' |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 58 | return increase |
Bram Moolenaar | 7a32991 | 2010-05-21 12:05:36 +0200 | [diff] [blame] | 59 | elseif line =~ '^'.s:tag.'[&!]\=[=~-]\s*\%(\%(if\|else\|elsif\|unless\|case\|when\|while\|until\|for\|begin\|module\|class\|def\)\>\%(.*\<end\>\)\@!\|.*do\%(\s*|[^|]*|\)\=\s*$\)' |
| 60 | return increase |
| 61 | elseif line =~ '^'.s:tag.'[&!]\=[=~-].*,\s*$' |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 62 | return increase |
| 63 | elseif line == '-#' |
| 64 | return increase |
| 65 | elseif group =~? '\v^(hamlSelfCloser)$' || line =~? '^%\v%('.g:haml_self_closing_tags.')>' |
| 66 | return indent |
| 67 | elseif group =~? '\v^%(hamlTag|hamlAttributesDelimiter|hamlObjectDelimiter|hamlClass|hamlId|htmlTagName|htmlSpecialTagName)$' |
| 68 | return increase |
| 69 | elseif synIDattr(synID(v:lnum,1,1),'name') ==? 'hamlRubyFilter' |
| 70 | return GetRubyIndent() |
| 71 | else |
| 72 | return indent |
| 73 | endif |
| 74 | endfunction |
| 75 | |
| 76 | " vim:set sw=2: |