Files
.emacs.d/modules/tools/siren-makefile-executor.el
Jim Myhrberg a8618938bf feat(core): use general.el for keybind definitions nearly everywhere
Primarily this replaces :bind with :general in all use-package calls.
2022-03-14 21:16:15 +00:00

25 lines
646 B
EmacsLisp

;;; siren-makefile-executor.el --- jimeh's Emacs Siren: makefile-executor configuration.
;;; Commentary:
;; Basic configuration for makefile-executor.
;;; Code:
(require 'helm-make)
(use-package makefile-executor
:hook
(makefile-mode . makefile-executor-mode)
:general
("C-c C-m" 'makefile-executor-execute-project-target)
:config
;; Replace get targets function with that from helm-make as it faster and more
;; efficient by not needing to write any temporary files to disk.
(defalias 'makefile-executor-get-targets 'helm--make-target-list-qp))
(provide 'siren-makefile-executor)
;;; siren-makefile-executor.el ends here