forked from davraamides/todotxt-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdone.txt
40 lines (40 loc) · 3.15 KB
/
done.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
x 2019-04-22 move from inbox.txt to todo.txt, someday.txt, waiting.txt, deferred.txt +File
x 2019-04-22 add "next" command to move select tasks to inbox.txt +File
x 2019-04-22 add "defer" command to move selected tasks to deferred.txt +File
x 2019-04-22 add "wait" command to move selected tasks to waiting.txt +File
x 2019-04-19 (A) decorate completed task +Decorate grey strikethrough
x 2019-04-19 (A) decorate project +Decorate light blue
x 2019-04-19 (B) mark done with date or undone and remove date +Line
x 2019-04-19 make decoration work whenever buffer changes +Bug
x 2019-04-20 (A) add keybinding for toggle-completion +Config
x 2019-04-20 (B) decorate priority +Decorate yellow @prog
x 2019-04-20 (B) decorate context +Decorate green @wait
x 2019-04-20 (B) decorate tag @done +Decorate purple
x 2019-04-21 (B) add build step to make a VSIX package so I can install on my own +Config
x 2019-04-21 add option to always sort completed tasks to the bottom
x 2019-04-22 archive tasks to done.txt +File
x 2019-04-23 not always redecorating after a sort +Bug
x 2019-04-26 (A) make all sorts, formats, moves work on selected row ranges
x 2019-04-27 (B) command to take text selection and create note and save in clipboard (or add to task above selection?)
x 2019-05-09 decorate due date, today and overdue +Decorate purple, yellow bold, red bold
x 2019-05-04 (A) command to strip all priorities
x 2019-05-04 (A) add an option as a section delimiter (eg '^--$') that if set will break the .txt file into regions that are ignored?
x 2019-05-10 (B) make configurable (file names, keybindings, colors)
x 2019-05-12 (B) make note link open file when clicking on it: https://github.com/Jack89ita/vscode-open-file-from-path/blob/master/extension.js
x 2019-05-12 search command to find all tasks with high priority (A/B) or overdue or due within next 5 days (Cmd-Shift-F)
x 2019-05-19 (C) flush all changes to Git (maybe not necessary if I have the job)
x 2019-05-19 (B) create a couple of screenshots of it +Publish
x 2019-05-19 (C) test locally +Publish
x 2019-05-19 (B) write a better README.md file +Publish
x 2019-05-14 (A) colors for priorities are off
x 2019-05-19 make test file from official format document +Test
x 2019-05-19 (C) learn about publishing here https://code.visualstudio.com/api/working-with-extensions/publishing-extension +Publish
x 2019-05-19 (C) get a personal access token +Publish
x 2019-05-19 (C) create a publisher +Publish
x 2019-05-19 (A) creates note saving in ~/.vscode/<todo>/. folder rather than same folder as current file +Bug
x 2019-05-19 (A) reformat tasks failed +Bug
x 2019-06-22 (A) allow archiving from any todo.txt file and even project files (pain to copy back to todo.txt just to archive) +Todo
x 2019-06-22 (A) tag highlighting didn't work for multiple tags like when they were dates dt:2019-06-14 dt:2019-06-14 +Todo
x 2019-05-22 (B) when I moved a task to waiting file it appended to the last line because the file wasn't terminated with an EOL @bug +TodoTxt
x 2019-09-16 (B) allow archive to work from any of the files +File
x 2019-09-16 (B) add support for project .md files with begin/end regex for region (or one complete one) and file pattern for project files +Decorate