;;; funcs.el --- Smex Layer functions File for Spacemacs ;; ;; Copyright (c) 2012-2016 Sylvain Benner & Contributors ;; ;; Author: Sylvain Benner ;; URL: https://github.com/syl20bnr/spacemacs ;; ;; This file is not part of GNU Emacs. ;; ;;; License: GPLv3 (defun spacemacs/smex () "Execute smex with a better prompt." (interactive) (let ((smex-prompt-string "Emacs commands: ")) (smex))) (defun spacemacs/smex-major-mode-commands () "Reexecute smex with major mode commands only." (interactive) (let ((smex-prompt-string (format "%s commands: " major-mode))) (smex-major-mode-commands)))