"============================================================================= " File : autoload/unite/sources/outline/defaults/sass.vim " Author : roylez " Updated : 2015-05-07 " " Licensed under the MIT license: " http://www.opensource.org/licenses/mit-license.php " "============================================================================= " Default outline info for SASS " Version: 0.0.1 function! unite#sources#outline#defaults#sass#outline_info() abort return s:outline_info endfunction let s:Util = unite#sources#outline#import('Util') "----------------------------------------------------------------------------- " Outline Info let s:outline_info = { \ 'heading-1': s:Util.shared_pattern('cpp', 'heading-1'), \ 'header' : '^//|^/\*', \} function! s:outline_info.create_heading(which, heading_line, matched_line, context) abort let heading = { \ 'word' : a:heading_line, \ 'level': 0, \ 'type' : 'generic', \ } if a:which ==# 'heading-1' let m_lnum = a:context.matched_lnum let heading.type = 'comment' let heading.level = s:Util.get_comment_heading_level(a:context, m_lnum, 4) endif if heading.level > 0 return heading else return {} endif endfunction