org-projectile provides functions for the creation of org-mode TODOs that are associated with projectile projects.
Install from MELPA with M-x package-install org-projectile
. See the melpa repository for details about how to set up MELPA if you have not already done so.
Before using org-projectile, you must specify the file you would like to use for storing project TODOs, as well a keybinding for taking a project note with org-capture and a global keybinding for org-projectile:project-todo-completing-read
. It is recommended that you start with the following configuration:
(require 'org-projectile)
(setq org-projectile:projects-file
"/your/path/to/an/org/file/for/storing/projects.org")
(add-to-list 'org-capture-templates (org-projectile:project-todo-entry))
(global-set-key (kbd "C-c c") 'org-capture)
(global-set-key (kbd "C-c n p") 'org-projectile:project-todo-completing-read)
Using jwiegley’s excellent use-package:
(use-package org-projectile
:bind (("C-c n p" . org-projectile:project-todo-completing-read)
("C-c c" . org-capture))
:config
(progn
(setq org-projectile:projects-file
"/your/path/to/an/org/file/for/storing/projects.org")
(add-to-list 'org-capture-templates (org-projectile:project-todo-entry "p")))
:ensure t)
org-projectile:project-todo-completing-read
opens a projectile-completing-read that allows the selection of a project heading under which to store the input that is subsequently captured in an org-capture
buffer. Completion candidates for this function are generated using the project list returned from (projectile-relevant-known-projects)
and the existing headings in org-projectile:projects-file
.
org-projectile:template-or-project
is identical to org-projectile:project-todo-completing-read
except that it uses helm directly, and it will also complete existing org-capture-templates
. helm is not included as a dependency in this project, so you must install it manually to use this function.
org-projectile:project-todo-entry
is a function that builds an entry that can be added to org-capture-templates
in order to use org-capture to make TODOs for the project to which the current buffer belongs. You can access org-capture mode with M-x org-capture
, but it is recommended that you bind org-capture to some key.
Both of these functions will create the relevant top level heading in the org-mode file stored in org-projectile:projects-file
if it does not exist.
Both org-projectile:project-todo-entry
and org-projectile:project-todo-completing-read
accept optional arguments that customize their behavior. The first argument to org-projectile:project-todo-entry
is the character that will trigger the produced entry from org-capture. If no argument is supplied, the default value of p
will be used. The second positional argument is the heading format that will be used. If no argument is supplied, the value of org-projectile:capture-template
will be used as the capture template.
The first argument to org-projectile:project-todo-completing-read
does the same thing as the second argument to org-projectile:project-todo-entry
.
Here is an example of how to use a custom capture template in conjunction with org-projectile:project-todo-entry
:
(add-to-list 'org-capture-templates
(org-projectile:project-todo-entry "l" "* TODO %? %a\n" "Linked Project TODO"))
In addition to going to the appropriate heading in your projects todo file, this capture template will automatically link to the line at which the cursor was situated when org-capture was invoked.
If you wish to use this type of functionality with org-projectile:project-todo-completing-read
, but only when it is explicitly requested, you might make it so that when call the function with a prefix argument, an alternative linking template is used:
(defun imalison:project-todo-completing-read (&optional arg)
(interactive "P")
(org-projectile:project-todo-completing-read
(if arg "* TODO %? %a\n" nil)))