helm: remove unused defuns

This commit is contained in:
Henrik Lissner 2016-04-19 22:27:51 -04:00
parent f837d124b4
commit ab68983dd4

View file

@ -1,11 +1,6 @@
;;; defuns-helm.el ;;; defuns-helm.el
;; see ../core-helm.el ;; see ../core-helm.el
;;;###autoload
(defun narf|projectile-invalidate-cache-maybe ()
(when (narf/project-p)
(projectile-invalidate-cache nil)))
;;;###autoload (autoload 'narf:helm-recentf "defuns-helm" nil t) ;;;###autoload (autoload 'narf:helm-recentf "defuns-helm" nil t)
(evil-define-command narf:helm-recentf (&optional bang) (evil-define-command narf:helm-recentf (&optional bang)
"Ex-mode interface for `helm-recentf' and `helm-projectile-recentf'. If "Ex-mode interface for `helm-recentf' and `helm-projectile-recentf'. If
@ -78,24 +73,5 @@ buffers."
(let ((narf-helm-force-project-buffers (and (not all-p) (narf/project-p)))) (let ((narf-helm-force-project-buffers (and (not all-p) (narf/project-p))))
(helm-buffers-list))) (helm-buffers-list)))
;;;###autoload
(defun narf/helm-descbinds-leader ()
(interactive)
(narf--helm-descbinds "^,\\ "))
;;;###autoload
(defun narf/helm-descbinds-localleader ()
(interactive)
(narf--helm-descbinds "^\\\\\\ "))
(defun narf--helm-descbinds (&optional input buffer)
(let ((enable-recursive-minibuffers t))
(require 'helm-descbinds)
(helm :sources (helm-descbinds-sources (or buffer (current-buffer)))
:buffer "*helm-descbinds*"
:resume 'noresume
:allow-nest t
:input input)))
(provide 'defuns-helm) (provide 'defuns-helm)
;;; defuns-helm.el ends here ;;; defuns-helm.el ends here