Reorder stuff.

This commit is contained in:
Israel Chauca Fuentes
2010-12-11 05:23:59 -06:00
parent 0783f97fc0
commit 4c1424f9bd

View File

@@ -215,6 +215,13 @@ function! delimitMate#BalancedParens(char) "{{{
return opening - closing
endfunction "}}}
function! delimitMate#RmBuffer(num) " {{{
if len(b:_l_delimitMate_buffer) > 0
call remove(b:_l_delimitMate_buffer, 0, (a:num-1))
endif
return ""
endfunction " }}}
" }}}
" Doers {{{
@@ -372,12 +379,6 @@ function! delimitMate#JumpMany() " {{{
endif
endfunction " delimitMate#JumpMany() }}}
function! delimitMate#MapMsg(msg) "{{{
redraw
echomsg a:msg
return ""
endfunction "}}}
function! delimitMate#ExpandReturn() "{{{
if delimitMate#IsForbidden("")
return "\<CR>"
@@ -461,13 +462,6 @@ function! delimitMate#Finish(move_back) " {{{
return ''
endfunction " }}}
function! delimitMate#RmBuffer(num) " {{{
if len(b:_l_delimitMate_buffer) > 0
call remove(b:_l_delimitMate_buffer, 0, (a:num-1))
endif
return ""
endfunction " }}}
" }}}
" Tools: {{{