Files
.emacs.d/modules/editor/siren-smex.el
Jim Myhrberg 87a86191db Majorly re-organize modules
- Split large modules into smaller parts (e.g. siren-text-manipulation)
- Organize modules into high level groups:
  - completion
  - core
  - editor
  - languages
  - linting
  - misc
  - navigation
  - projects
  - spelling
  - text-editing
  - version-control
  - windows
  - workspaces
2018-05-20 17:31:11 +01:00

23 lines
449 B
EmacsLisp

;;; siren-smex.el --- jimeh's Emacs Siren: smex.
;;; Commentary:
;; Replace M-x with the more powerful smex.
;;; Code:
(use-package smex
:bind
("M-x" . smex)
("M-X" . smex-major-mode-commands)
("C-x C-m" . smex)
("C-c C-m" . smex)
("C-c C-c M-x" . execute-extended-command)
:config
(setq smex-save-file (expand-file-name ".smex-items" siren-savefile-dir))
(smex-initialize))
(provide 'siren-smex)
;;; siren-smex.el ends here