Reorder stuff.

This commit is contained in:
Israel Chauca Fuentes
2010-12-11 05:23:59 -06:00
parent 0783f97fc0
commit 4c1424f9bd
+7 -13
View File
@@ -215,6 +215,13 @@ function! delimitMate#BalancedParens(char) "{{{
return opening - closing return opening - closing
endfunction "}}} 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 {{{ " Doers {{{
@@ -372,12 +379,6 @@ function! delimitMate#JumpMany() " {{{
endif endif
endfunction " delimitMate#JumpMany() }}} endfunction " delimitMate#JumpMany() }}}
function! delimitMate#MapMsg(msg) "{{{
redraw
echomsg a:msg
return ""
endfunction "}}}
function! delimitMate#ExpandReturn() "{{{ function! delimitMate#ExpandReturn() "{{{
if delimitMate#IsForbidden("") if delimitMate#IsForbidden("")
return "\<CR>" return "\<CR>"
@@ -461,13 +462,6 @@ function! delimitMate#Finish(move_back) " {{{
return '' return ''
endfunction " }}} 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: {{{ " Tools: {{{