From e2ae41046d2abbadb15b28f6c60f0309a571b877 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 16 Feb 2016 07:24:13 -0500 Subject: [PATCH] Remove what-minor-modes (helm handles this now) --- core/defuns/defuns-debug.el | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/core/defuns/defuns-debug.el b/core/defuns/defuns-debug.el index 14569d6a6..18ac637a8 100644 --- a/core/defuns/defuns-debug.el +++ b/core/defuns/defuns-debug.el @@ -28,19 +28,6 @@ (interactive) (message "Mode: %s" major-mode)) -;;;###autoload -(defun what-minor-modes () - (interactive) - (let ((buf (get-buffer-create "*minor-modes*"))) - (with-current-buffer buf - (insert "Active minor modes:\n + ") - (insert (s-join "\n + " (-filter - (lambda (k) (and k (not (string= k "")))) - (mapcar (lambda (mm) (symbol-name (car mm))) - minor-mode-alist))))) - (narf/popup-buffer buf))) - - ;;;###autoload (autoload 'narf:echo "defuns-debug" nil t) (evil-define-command narf:echo (bang message) "Display MSG in echo-area without logging it in *Messages* buffer."