Goodbye Helm, hello Ivy

This commit is contained in:
Henrik Lissner 2016-06-04 22:47:20 -04:00
parent e8344945f5
commit bc33e39823
14 changed files with 191 additions and 83 deletions

View file

@ -3,20 +3,20 @@
;;;###autoload
(defun doom/org-find-file-in-notes ()
(interactive)
(in! (f-slash org-directory)
(helm-projectile-find-file)))
(let ((default-directory (f-slash org-directory)))
(projectile-find-file)))
;;;###autoload
(defun doom/org-find-file ()
(interactive)
(in! (f-slash org-directory)
(helm-find-files nil)))
(let ((default-directory (f-slash org-directory)))
(counsel-find-file)))
;;;###autoload
(defun doom/org-find-exported-file ()
(interactive)
(in! (f-slash doom-org-export-directory)
(helm-find-files nil)))
(let ((default-directory (f-slash doom-org-export-directory)))
(counsel-find-file)))
;;;###autoload
(defun doom/org-get-property (name)