~ruther/emacs.d

415ace37251a4423c28a5261dea4bfccd6cfc620 — Rutherther 9 months ago 81b63b8 feat/run-command
feat: init run-command, shell-command-x
1 files changed, 36 insertions(+), 1 deletions(-)

M init.el
M init.el => init.el +36 -1
@@ 808,7 808,7 @@
  :config
  (global-anzu-mode +1))

;; Vterm
;; Shell
(my-use-package vterm
  :ensure t
  :commands vterm


@@ 834,6 834,41 @@
    "t t" '(vterm-toggle :wk "Toggle terminal")
    "t T" '(vterm :wk "Open terminal")))

(my-use-package shell-command-x
  :ensure t
  :config
  (shell-command-x-mode 1))

(my-use-package run-command
  :ensure t
  :general
  (my-leader
    "r" '(run-command :wk "Run command"))
  :custom
  (run-command-recipes '(
                         run-command-recipe-watchexec
                         run-command-recipe-make
                         ))
  :init
  (defun run-command-recipe-watchexec ()
    "Ask for a command and run it whenever the current file is saved.

  Requires `watchexec' (https://watchexec.github.io/) to be installed."
    (when-let ((buffer-file (buffer-file-name)))
      (list
      (list
        :display
        (format "Run arbitrary command whenever `%s' is saved"
                (file-name-nondirectory buffer-file))
        :command-name "watchexec"
        :command-line
        (lambda ()
          (let ((command-to-run
                (shell-quote-argument (read-string "Enter command: "))))
            (format "watchexec --clear --watch '%s' '%s'"
                    buffer-file
                    command-to-run))))))))

;; MMM mode
;; (my-use-package mmm-mode
;;   :ensure t

Do not follow this link