Skip to content

Commit

Permalink
tweak(makefile-executor): add keybindings
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Jan 11, 2024
1 parent 649d3d5 commit 8871df4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion modules/me-prog.el
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,15 @@

(use-package makefile-executor
:straight t
:hook (makefile-mode . makefile-executor-mode))
:hook (makefile-mode . makefile-executor-mode)
:init
(+map!
"pm" '(nil :wk "makefile-executor")
"pmm" #'makefile-executor-execute-project-target
"pml" #'makefile-executor-execute-last)
(+map-local! :keymaps 'makefile-mode-map
"pmt" #'makefile-executor-execute-target
"pmb" #'makefile-executor-execute-dedicated-buffer))

(use-package web-mode
:straight t)
Expand Down

0 comments on commit 8871df4

Please sign in to comment.