Last active
August 29, 2015 14:01
-
-
Save ype/4a2d273d57cc50dc4246 to your computer and use it in GitHub Desktop.
Emacs Macro to add a Kanban table to orgfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; Emacs macro to add a kanban table to file | |
| ;; Requires Kanban (M-x package-install "kanban") | |
| (fset 'kanban | |
| " | |
| | TODO | DOING | DONE | | |
| |------+-------+------| | |
| | | | | | |
| | | | | | |
| | | | | | |
| #+TBLFM: @1='(kanban-headers $#)::@2$1..@>$>='(kanban-zero @# $# nil (list \"~/path/to/file.org\")) | |
| ") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment