sacha/planner-strip-task-numbers

| emacs
(defun sacha/planner-strip-task-numbers ()
  (interactive)
  (while (re-search-forward "^#.\\([0-9]+\\)\\s-+.\\s-+" nil t)
    (replace-match "" t t nil 1))
  (planner-align-tasks))

../emacs/planner-config.el

You can comment with Disqus or you can e-mail me at sacha@sachachua.com.