From 8c378b564604b9d6fb1e3f84b51ac9c2d5573c59 Mon Sep 17 00:00:00 2001 From: David Beniamine Date: Thu, 12 Mar 2015 21:02:50 -0300 Subject: [PATCH] Fix: bad function declaration --- ftplugin/todo_sort.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftplugin/todo_sort.vim b/ftplugin/todo_sort.vim index e5d88bb..df74413 100644 --- a/ftplugin/todo_sort.vim +++ b/ftplugin/todo_sort.vim @@ -109,7 +109,7 @@ endfunction " Returns the list of groups starting by a:symbol between lines a:begin and " a:end -function GetGroups(symbol,begin, end) +function! GetGroups(symbol,begin, end) let l:curline=a:begin let l:groups=[] while l:curline <= a:end