From 18992c0720ad2ba0f5ab9b5a034f3e49779d1428 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 7 Nov 2016 12:04:02 -0800 Subject: [PATCH] [Emacs] Update org-projectile configs for big-changes branch --- dotfiles/emacs.d/README.org | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 657e6fab..a0e30b0a 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -3290,19 +3290,20 @@ alphanumeric characters only." :bind (("C-c n p" . imalison:helm-org-todo)) :config (progn - (org-projectile:prompt) + (require 'org-projectile-helm) + (org-projectile-prompt) (add-to-list 'org-capture-templates - (org-projectile:project-todo-entry + (org-projectile-project-todo-entry "l" "* TODO %? %a\n" "Linked Project TODO")) - (add-to-list 'org-capture-templates (org-projectile:project-todo-entry "p")) + (add-to-list 'org-capture-templates (org-projectile-project-todo-entry "p")) (setq org-confirm-elisp-link-function nil) - (imalison:add-to-org-agenda-files (org-projectile:todo-files)) + (imalison:add-to-org-agenda-files (org-projectile-todo-files)) (require 'helm-source) (require 'helm-org) (defun imalison:helm-org-todo (&optional arg) (interactive "P") (helm :sources (list (helm-source-org-capture-templates) - (org-projectile:helm-source + (org-projectile-helm-source (if arg (imalison:make-org-linked-todo-template) (imalison:make-org-todo-template)))) :candidate-number-limit 99999