aziz / PlainTasks

An opinionated todo-list plugin for Sublime Text editor (version 2 and 3)
MIT License
3.29k stars 286 forks source link

[Feature Request] Configure timestamp visibility #390

Closed ErnestUTN closed 5 years ago

ErnestUTN commented 5 years ago

Greetings

First of all, Let me say I love your plugin, so keep up the good job. Second, I would like to customise timestamp visibility(true | false) in the config files when you mark tasks as done,cancelled,etc since sometimes they might not be necessary at all, but still want to keep the rest of the functionality.

Regards

vovkkk commented 5 years ago

We cannot toggle visibility of a text, we could fold it I guess but it would be too bizarre folding only a part of a line.

If you want to define whether a timestamp has to be inserted upon a completing then use "done_date": false setting, all settings are documented in the readme btw.

If you want to toggle a setting often you can make a keybinding like this:

{"keys": ["f1"], "command": "toggle_setting", "args": {"setting": "done_date"}}
ErnestUTN commented 5 years ago

Thanks! That will do. Sry about not searching it in the Readme.. I had just looked in the config ini for that setting.