itchyny / calendar.vim

A calendar application for Vim
MIT License
1.95k stars 72 forks source link

Can't delete task #89

Closed foulowl closed 9 years ago

foulowl commented 9 years ago

I can delete events with "D" or "dd", but the same does not appear to be true for tasks. Am I missing something obvious here or is there a bug?

Thank you!!

itchyny commented 9 years ago

D in the task list means you completed the task. Use L to clear the completed tasks.

foulowl commented 9 years ago

Is there no way to delete a task without marking it completed, then clearing the completed tasks? For example, I have added a task by mistake and would like to remove it, however I want to keep an archive of my completed tasks, so I don't ever want to press "L". Thank you!!

itchyny commented 9 years ago

Currently, no. Sorry.

itchyny commented 9 years ago

I implemented the feature. You can enable by the following configuration.

let g:calendar_task_delete = 1

Thanks for your feature request.