Skip to content

Instantly share code, notes, and snippets.

@ype
Last active August 29, 2015 14:01
Show Gist options
  • Select an option

  • Save ype/4a2d273d57cc50dc4246 to your computer and use it in GitHub Desktop.

Select an option

Save ype/4a2d273d57cc50dc4246 to your computer and use it in GitHub Desktop.
Emacs Macro to add a Kanban table to orgfile
;; 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