diff --git a/autoload/todo.vim b/autoload/todo.vim index 04914ea..73e1c16 100644 --- a/autoload/todo.vim +++ b/autoload/todo.vim @@ -184,7 +184,7 @@ function! todo#SortDue() " Turn the due:date from due:yyyy-mm-dd to due:yyyymmdd so we can do a numeric sort silent! %substitute/\v<(due:\d{4})\-(\d{2})\-(\d{2})>/\1\2\3/ei " Sort all the lines with due: by numeric yyyymmdd, they will end up in ascending order at the bottom of the buffer - sort in /\v/ + sort in /\v\c/ " Determine the line number of the first task with a due:date let l:firstLineWithDue = line("$") - l:tasksWithDueDate + 1 " Put the sorted lines at the beginning of the file