From 0e08d417eac8b8c69ae8130eab7b8cef885a721c Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 13 Dec 2014 22:29:10 -0800 Subject: [PATCH] Remove helm-org headlines since its now in helm. --- load.d/helm-org-headlines.el | 58 ------------------------------------ 1 file changed, 58 deletions(-) delete mode 100644 load.d/helm-org-headlines.el diff --git a/load.d/helm-org-headlines.el b/load.d/helm-org-headlines.el deleted file mode 100644 index 6bcdc8a0..00000000 --- a/load.d/helm-org-headlines.el +++ /dev/null @@ -1,58 +0,0 @@ -(defun helm-org-agenda-files-headings (&optional min-depth max-depth) - (interactive) - (helm :sources (helm-source-org-headings-for-files org-agenda-files min-depth max-depth))) - -(defun helm-org-goto-marker (marker) - (switch-to-buffer (marker-buffer marker)) - (goto-char (marker-position marker)) - (org-show-entry)) - -(defun helm-source-org-headings-for-files (filenames &optional min-depth max-depth) - (unless min-depth (setq min-depth 1)) - (unless max-depth (setq max-depth 8)) - (helm-build-sync-source "Org Headings" - :candidates (helm-org-get-candidates filenames min-depth max-depth) - :action 'helm-org-goto-marker - :action-transformer - (lambda (actions candidate) - '(("Go to line" . helm-org-goto-marker) - ("Refile to this heading" . helm-org-heading-refile) - ("Insert link to this heading" - . helm-org-insert-link-to-heading-at-marker))))) - -(defun helm-org-insert-link-to-heading-at-marker (marker) - (with-current-buffer (marker-buffer marker) - (goto-char (marker-position marker)) - (let ((heading-name (nth 4 (org-heading-components))) - (file-name buffer-file-name)) - (message heading-name) - (message file-name) - (with-helm-current-buffer - (org-insert-link - file-name (concat "file:" file-name "::*"heading-name)))))) - -(defun helm-org-heading-refile (marker) - (with-helm-current-buffer - (org-cut-subtree)) - (let ((target-level (with-current-buffer (marker-buffer marker) - (goto-char (marker-position marker)) - (org-current-level)))) - (helm-org-goto-marker marker) - (org-end-of-subtree t t) - (org-paste-subtree (+ target-level 1)))) - -(defun helm-org-get-candidates (filenames min-depth max-depth) - (-flatten - (mapcar (lambda (filename) - (helm-get-org-candidates-in-file - filename min-depth max-depth)) - filenames))) - -(defun helm-get-org-candidates-in-file (filename min-depth max-depth) - (with-current-buffer (find-file-noselect filename) - (save-excursion - (beginning-of-buffer) - (cl-loop while (re-search-forward org-complex-heading-regexp nil t) - if (let ((num-stars (length (match-string-no-properties 1)))) - (and (>= num-stars min-depth) (<= num-stars max-depth))) - collect `(,(match-string-no-properties 0) . ,(point-marker))))))