aziz / PlainTasks

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

Archiving all tasks in a folded project concatenates the next project to the first #443

Open kschutter opened 2 weeks ago

kschutter commented 2 weeks ago

If I start with:

Project 1:
  ✔ Completed Item
Project 2:
  ☐ 2's task

And fold Project 1 to get this:

Project 1: [...]
Project 2:
  ☐ 2's task

Archiving will erroneously produce this:

Project 1: [...]Project 2:
  ☐ 2's task

When it should be:

Project 1:
Project 2:
  ☐ 2's task