From 4c1424f9bdac7ac8b77fce1abb9eaea9726aa368 Mon Sep 17 00:00:00 2001 From: Israel Chauca Fuentes Date: Sat, 11 Dec 2010 05:23:59 -0600 Subject: [PATCH] Reorder stuff. --- autoload/delimitMate.vim | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/autoload/delimitMate.vim b/autoload/delimitMate.vim index 3eecfd2..215d60e 100644 --- a/autoload/delimitMate.vim +++ b/autoload/delimitMate.vim @@ -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 "\" @@ -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: {{{