1
0
mirror of https://github.com/Foltik/dotfiles synced 2025-01-08 08:59:54 -05:00

Add "b" prefix for building/running in major-mode-map

This commit is contained in:
Jack Foltz 2019-05-03 09:11:41 -04:00
parent 7c48fdd049
commit 2f0a81dcb3
Signed by: foltik
GPG Key ID: D1F0331758D1F29A

View File

@ -1211,9 +1211,9 @@ cdlatex adds better TeX-specific template expansions and other niceties.
:general
(jf-major-def
:keymaps 'rust-mode-map
"b" #'cargo-process-build
"r" #'cargo-process-run
"t" #'cargo-process-test))
"b b" #'cargo-process-build
"b r" #'cargo-process-run
"b t" #'cargo-process-test))
#+END_SRC
*** C/C++
**** Irony
@ -1268,5 +1268,13 @@ for all of the IDE like features.
The std:: java build system
#+BEGIN_SRC emacs-lisp
(use-package gradle-mode
:commands gradle-mode)
:commands gradle-mode
:preface
(defun jf-gradle-run-main ()
(gradle-execute "run"))
:general
(jf-major-def
:keymaps 'gradle-mode-map
"b b" #'gradle-build
"b r" #'jf-gradle-run-main))
#+END_SRC