Remove what-minor-modes (helm handles this now)

This commit is contained in:
Henrik Lissner 2016-02-16 07:24:13 -05:00
parent 114afeb568
commit e2ae41046d

View file

@ -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."