├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── images ├── screencast_01.gif └── screencast_02.gif ├── manual.md ├── scripting.md └── taskpaper-mode.el /.gitattributes: -------------------------------------------------------------------------------- 1 | 2 | *.el diff=elisp 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saf-dmitry/taskpaper-mode/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saf-dmitry/taskpaper-mode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saf-dmitry/taskpaper-mode/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saf-dmitry/taskpaper-mode/HEAD/README.md -------------------------------------------------------------------------------- /images/screencast_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saf-dmitry/taskpaper-mode/HEAD/images/screencast_01.gif -------------------------------------------------------------------------------- /images/screencast_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saf-dmitry/taskpaper-mode/HEAD/images/screencast_02.gif -------------------------------------------------------------------------------- /manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saf-dmitry/taskpaper-mode/HEAD/manual.md -------------------------------------------------------------------------------- /scripting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saf-dmitry/taskpaper-mode/HEAD/scripting.md -------------------------------------------------------------------------------- /taskpaper-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saf-dmitry/taskpaper-mode/HEAD/taskpaper-mode.el --------------------------------------------------------------------------------