From ab68983dd48931ef2ecbbcc1a7fb7357c748f5c8 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 19 Apr 2016 22:27:51 -0400 Subject: [PATCH] helm: remove unused defuns --- core/defuns/defuns-helm.el | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/core/defuns/defuns-helm.el b/core/defuns/defuns-helm.el index 7a010977f..9229fe4ca 100644 --- a/core/defuns/defuns-helm.el +++ b/core/defuns/defuns-helm.el @@ -1,11 +1,6 @@ ;;; defuns-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) (evil-define-command narf:helm-recentf (&optional bang) "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)))) (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) ;;; defuns-helm.el ends here