Skip to content

Commit

Permalink
fix #25
Browse files Browse the repository at this point in the history
  • Loading branch information
assout committed Jun 7, 2015
1 parent ab3a48d commit fedb31b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/unite/todo.vim
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function! unite#todo#add(title_list)
for i in range(0, size-1)
let title = unite#todo#trim(a:title_list[i])
if !empty(title)
let todo = unite#todo#new(localtime().'_'.i.'_'.s:esctitle(title), title)
let todo = unite#todo#new(strftime("%Y%m%d_%H%M%S").'_'.i.'_'.s:esctitle(title), title)
call unite#todo#update(insert(unite#todo#all(), todo))
call add(added, todo)
endif
Expand Down

0 comments on commit fedb31b

Please sign in to comment.