mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-28 16:51:08 -05:00
feat(elm): add bindings for project compilation
Present in basically every other language module, these were mysteriously missing for Elm.
This commit is contained in:
committed by
Henrik Lissner
parent
bb60f5f6bc
commit
b66ad77031
@@ -15,10 +15,16 @@
|
||||
:int "Int" :str "String"
|
||||
:float "Float"
|
||||
:bool "Bool"
|
||||
|
||||
:not "not"
|
||||
:and "&&" :or "||"))
|
||||
:and "&&" :or "||")
|
||||
|
||||
(map! :map elm-mode-map
|
||||
:localleader
|
||||
(:prefix ("m" . "elm make")
|
||||
:desc "Compile HTML" "m" #'+elm/compile-html
|
||||
:desc "Compile HTML (optimized)" "M" #'+elm/compile-html-optimized
|
||||
:desc "Compile JS" "j" #'+elm/compile-js
|
||||
:desc "Compile JS (optimized)" "J" #'+elm/compile-js-optimized)))
|
||||
|
||||
(use-package! flycheck-elm
|
||||
:when (modulep! :checkers syntax)
|
||||
|
Reference in New Issue
Block a user