diff options
| author | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-12 16:17:03 +0200 | 
|---|---|---|
| committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-12 16:17:03 +0200 | 
| commit | 01fe1500df97577452f755b526c09d8ed0c802ea (patch) | |
| tree | 9e2e038630cc9e82abcd17da6dd3407a9b3bc62a /indent/stylus.vim | |
| parent | dce12af91b404835938e95de9e6d839d52487ed5 (diff) | |
| download | vim-polyglot-01fe1500df97577452f755b526c09d8ed0c802ea.tar.gz vim-polyglot-01fe1500df97577452f755b526c09d8ed0c802ea.zip  | |
Add support for basic languages
coffee, cucumbeer, eruby, haml, haskell, javascript,
json, less, nginx, ocaml, ruby, sass, scss, slim,
stylus, textile, tmux
Diffstat (limited to 'indent/stylus.vim')
| -rw-r--r-- | indent/stylus.vim | 129 | 
1 files changed, 129 insertions, 0 deletions
diff --git a/indent/stylus.vim b/indent/stylus.vim new file mode 100644 index 00000000..8707e619 --- /dev/null +++ b/indent/stylus.vim @@ -0,0 +1,129 @@ +" Vim indent file +" Language: Stylus +" Maintainer: Marc Harter +" Last Change: 2010 May 21 +" Based On: sass.vim from Tim Pope +" +if exists("b:did_indent") +  finish +endif +unlet! b:did_indent +let b:did_indent = 1 + +setlocal indentexpr=GetStylusIndent() +setlocal indentkeys=o,O,*<Return>,},],0),!^F +setlocal formatoptions+=r + +if exists("*GetStylusIndent")  " only define once +  finish +endif + +function s:prevnonblanknoncomment(lnum) +  let lnum = a:lnum +  while lnum > 1 +    let lnum = prevnonblank(lnum) +    let line = getline(lnum) +    if line =~ '\*/' +      while lnum > 1 && line !~ '/\*' +        let lnum -= 1 +      endwhile +      if line =~ '^\s*/\*' +        let lnum -= 1 +      else +        break +      endif +    else +      break +    endif +  endwhile +  return lnum +endfunction + +function s:count_braces(lnum, count_open) +  let n_open = 0 +  let n_close = 0 +  let line = getline(a:lnum) +  let pattern = '[{}]' +  let i = match(line, pattern) +  while i != -1 +    if synIDattr(synID(a:lnum, i + 1, 0), 'name') !~ 'css\%(Comment\|StringQ\{1,2}\)' +      if line[i] == '{' +        let n_open += 1 +      elseif line[i] == '}' +        if n_open > 0 +          let n_open -= 1 +        else +          let n_close += 1 +        endif +      endif +    endif +    let i = match(line, pattern, i + 1) +  endwhile +  return a:count_open ? n_open : n_close +endfunction + +" function CheckCSSIndent() +"   let line = getline(v:lnum) +"   if line =~ '^\s*\*' +"     return cindent(v:lnum) +"   endif +"  +"   let pnum = s:prevnonblanknoncomment(v:lnum - 1) +"   if pnum == 0 +"     return 0 +"   endif +"  +"   return indent(pnum) + s:count_braces(pnum, 1) * &sw +"         \ - s:count_braces(v:lnum, 0) * &sw +" endfunction + +function! GetStylusIndent() +  let line = getline(v:lnum) +  if line =~ '^\s*\*' +    return cindent(v:lnum) +  endif + +  let pnum = s:prevnonblanknoncomment(v:lnum - 1) +  if pnum == 0 +    return 0 +  endif + +  let lnum     = prevnonblank(v:lnum-1) +  if lnum == 0 +    return 0 +  endif + +  let pline = getline(pnum) + +  if pline =~ '[}{]' +    return indent(pnum) + s:count_braces(pnum, 1) * &sw - s:count_braces(v:lnum, 0) * &sw +  endif + +  let line     = substitute(getline(lnum),'[\s()]\+$','','')  " get last line strip ending whitespace +  let cline    = substitute(substitute(getline(v:lnum),'\s\+$','',''),'^\s\+','','')  " get current line, trimmed +  let lastcol  = strlen(line)  " get last col in prev line +  let line     = substitute(line,'^\s\+','','')  " then remove preceeding whitespace +  let indent   = indent(lnum)  " get indent on prev line +  let cindent  = indent(v:lnum)  " get indent on current line +  let increase = indent + &sw  " increase indent by the shift width +  if indent   == indent(lnum) +    let indent = cindent <= indent ? indent : increase +  endif + +  let group = synIDattr(synID(lnum,lastcol,1),'name') + +  " for debugging only +  echo group + +  " if group !~? 'css.*' && line =~? ')\s*$' " match user functions +  "   return increase +  if group =~? '\v^%(cssTagName|cssClassName|cssIdentifier|cssSelectorOp|cssSelectorOp2|cssBraces|cssAttributeSelector|cssPseudoClass|cssPseudoClassId|stylusId|stylusClass)$' +    return increase +  elseif (group == 'stylusUserFunction') && (indent(lnum) == '0') " mixin definition +    return increase +  else +    return indent +  endif +endfunction + +" vim:set sw=2;  | 
