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: Sass |
| 3 | " Maintainer: Tim Pope <vimNOSPAM@tpope.org> |
Bram Moolenaar | 3ec574f | 2017-06-13 18:12:01 +0200 | [diff] [blame] | 4 | " Last Change: 2017 Jun 13 |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 5 | |
| 6 | if exists("b:did_indent") |
| 7 | finish |
| 8 | endif |
| 9 | let b:did_indent = 1 |
| 10 | |
| 11 | setlocal autoindent sw=2 et |
| 12 | setlocal indentexpr=GetSassIndent() |
| 13 | setlocal indentkeys=o,O,*<Return>,<:>,!^F |
| 14 | |
| 15 | " Only define the function once. |
| 16 | if exists("*GetSassIndent") |
| 17 | finish |
| 18 | endif |
| 19 | |
Bram Moolenaar | 543b7ef | 2013-06-01 14:50:56 +0200 | [diff] [blame] | 20 | let s:property = '^\s*:\|^\s*[[:alnum:]#{}-]\+\%(:\|\s*=\)' |
| 21 | let s:extend = '^\s*\%(@extend\|@include\|+\)' |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 22 | |
| 23 | function! GetSassIndent() |
| 24 | let lnum = prevnonblank(v:lnum-1) |
| 25 | let line = substitute(getline(lnum),'\s\+$','','') |
| 26 | let cline = substitute(substitute(getline(v:lnum),'\s\+$','',''),'^\s\+','','') |
| 27 | let lastcol = strlen(line) |
| 28 | let line = substitute(line,'^\s\+','','') |
| 29 | let indent = indent(lnum) |
| 30 | let cindent = indent(v:lnum) |
Bram Moolenaar | 543b7ef | 2013-06-01 14:50:56 +0200 | [diff] [blame] | 31 | if line !~ s:property && line !~ s:extend && cline =~ s:property |
Bram Moolenaar | 3ec574f | 2017-06-13 18:12:01 +0200 | [diff] [blame] | 32 | return indent + shiftwidth() |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 33 | else |
| 34 | return -1 |
| 35 | endif |
| 36 | endfunction |
| 37 | |
| 38 | " vim:set sw=2: |