You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.8 KiB
VimL
64 lines
1.8 KiB
VimL
let s:cpo_save = &cpo
|
|
set cpo&vim
|
|
|
|
" Matchit support for Mustache & Handlebars
|
|
" extending HTML matchit groups
|
|
if exists("loaded_matchit") && exists("b:match_words")
|
|
let b:match_words = b:match_words
|
|
\ . ',{:},[:],(:),'
|
|
\ . '\%({{\)\@<=#\s*\%(if\|unless\)\s*.\{-}}}'
|
|
\ . ':'
|
|
\ . '\%({{\)\@<=\s*else\s*}}'
|
|
\ . ':'
|
|
\ . '\%({{\)\@<=/\s*\%(if\|unless\)\s*}},'
|
|
\ . '\%({{\)\@<=[#^]\s*\([-0-9a-zA-Z_?!/.]\+\).\{-}}}'
|
|
\ . ':'
|
|
\ . '\%({{\)\@<=/\s*\1\s*}}'
|
|
endif
|
|
|
|
if exists("g:mustache_abbreviations")
|
|
inoremap <buffer> {{{ {{{}}}<left><left><left>
|
|
inoremap <buffer> {{ {{}}<left><left>
|
|
inoremap <buffer> {{! {{!}}<left><left>
|
|
inoremap <buffer> {{< {{<}}<left><left>
|
|
inoremap <buffer> {{> {{>}}<left><left>
|
|
inoremap <buffer> {{# {{#}}<cr>{{/}}<up><left><left>
|
|
inoremap <buffer> {{if {{#if }}<cr>{{/if}}<up><left>
|
|
inoremap <buffer> {{ife {{#if }}<cr>{{else}}<cr>{{/if}}<up><up><left>
|
|
endif
|
|
|
|
|
|
" Section movement
|
|
" Adapted from vim-ruby - many thanks to the maintainers of that plugin
|
|
|
|
function! s:sectionmovement(pattern,flags,mode,count)
|
|
norm! m'
|
|
if a:mode ==# 'v'
|
|
norm! gv
|
|
endif
|
|
let i = 0
|
|
while i < a:count
|
|
let i = i + 1
|
|
" saving current position
|
|
let line = line('.')
|
|
let col = col('.')
|
|
let pos = search(a:pattern,'W'.a:flags)
|
|
" if there's no more matches, return to last position
|
|
if pos == 0
|
|
call cursor(line,col)
|
|
return
|
|
endif
|
|
endwhile
|
|
endfunction
|
|
|
|
nnoremap <silent> <buffer> [[ :<C-U>call <SID>sectionmovement('{{','b','n',v:count1)<CR>
|
|
nnoremap <silent> <buffer> ]] :<C-U>call <SID>sectionmovement('{{','' ,'n',v:count1)<CR>
|
|
xnoremap <silent> <buffer> [[ :<C-U>call <SID>sectionmovement('{{','b','v',v:count1)<CR>
|
|
xnoremap <silent> <buffer> ]] :<C-U>call <SID>sectionmovement('{{','' ,'v',v:count1)<CR>
|
|
|
|
|
|
let &cpo = s:cpo_save
|
|
unlet s:cpo_save
|
|
|
|
" vim: nofoldenable
|