├── AUTHORS ├── LICENSE ├── Makefile ├── NEWS ├── README.md ├── doc └── man │ ├── taskopen.1 │ ├── taskopen.1.md │ ├── taskopenrc.5 │ └── taskopenrc.5.md ├── examples ├── 1.x │ └── taskreviewrc ├── default ├── markdown ├── templates └── utility_task ├── scripts ├── 1.x │ ├── do_review.sh │ ├── mess2task │ ├── mess2task2 │ └── mutt2task ├── addnote ├── archive ├── attach ├── editnote ├── rawedit ├── taskban ├── users │ └── artur-shaik │ │ └── attach_vifm ├── vims └── xdg-open-cli ├── src ├── config.nim ├── core.nim ├── exec.nim ├── output.nim ├── taskopen.nim ├── taskwarrior.nim └── types.nim └── taskopen.nimble /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/README.md -------------------------------------------------------------------------------- /doc/man/taskopen.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/doc/man/taskopen.1 -------------------------------------------------------------------------------- /doc/man/taskopen.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/doc/man/taskopen.1.md -------------------------------------------------------------------------------- /doc/man/taskopenrc.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/doc/man/taskopenrc.5 -------------------------------------------------------------------------------- /doc/man/taskopenrc.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/doc/man/taskopenrc.5.md -------------------------------------------------------------------------------- /examples/1.x/taskreviewrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/examples/1.x/taskreviewrc -------------------------------------------------------------------------------- /examples/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/examples/default -------------------------------------------------------------------------------- /examples/markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/examples/markdown -------------------------------------------------------------------------------- /examples/templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/examples/templates -------------------------------------------------------------------------------- /examples/utility_task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/examples/utility_task -------------------------------------------------------------------------------- /scripts/1.x/do_review.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/1.x/do_review.sh -------------------------------------------------------------------------------- /scripts/1.x/mess2task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/1.x/mess2task -------------------------------------------------------------------------------- /scripts/1.x/mess2task2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/1.x/mess2task2 -------------------------------------------------------------------------------- /scripts/1.x/mutt2task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/1.x/mutt2task -------------------------------------------------------------------------------- /scripts/addnote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/addnote -------------------------------------------------------------------------------- /scripts/archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/archive -------------------------------------------------------------------------------- /scripts/attach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/attach -------------------------------------------------------------------------------- /scripts/editnote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/editnote -------------------------------------------------------------------------------- /scripts/rawedit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/rawedit -------------------------------------------------------------------------------- /scripts/taskban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/taskban -------------------------------------------------------------------------------- /scripts/users/artur-shaik/attach_vifm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/users/artur-shaik/attach_vifm -------------------------------------------------------------------------------- /scripts/vims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/vims -------------------------------------------------------------------------------- /scripts/xdg-open-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/scripts/xdg-open-cli -------------------------------------------------------------------------------- /src/config.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/src/config.nim -------------------------------------------------------------------------------- /src/core.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/src/core.nim -------------------------------------------------------------------------------- /src/exec.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/src/exec.nim -------------------------------------------------------------------------------- /src/output.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/src/output.nim -------------------------------------------------------------------------------- /src/taskopen.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/src/taskopen.nim -------------------------------------------------------------------------------- /src/taskwarrior.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/src/taskwarrior.nim -------------------------------------------------------------------------------- /src/types.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/src/types.nim -------------------------------------------------------------------------------- /taskopen.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jschlatow/taskopen/HEAD/taskopen.nimble --------------------------------------------------------------------------------