about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2021-12-08T18·19-0500
committergrfn <grfn@gws.fyi>2021-12-09T02·08+0000
commit91f33b1a96450ff690748ebba3fc2bd1eadc3d6e (patch)
tree29d7ff5de3d76c2922e242daaf49c7075cafa8fd
parent2d4fa60ae7e33bd487ba055ee729ea471462c593 (diff)
feat(grfn/emacs): Add some prolog-mode mappings r/3161
Change-Id: If1677024f9a211eee5d42a03413b5058dd797b9a
-rw-r--r--users/grfn/emacs.d/+bindings.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/users/grfn/emacs.d/+bindings.el b/users/grfn/emacs.d/+bindings.el
index 05c83435a5..508879e417 100644
--- a/users/grfn/emacs.d/+bindings.el
+++ b/users/grfn/emacs.d/+bindings.el
@@ -1424,4 +1424,6 @@ If invoked with a prefix ARG eval the expression after inserting it"
    (:localleader
     :n "a" #'lsp-execute-code-action))
 
- )
+ (:map prolog-mode-map
+  :n "g SPC" #'prolog-compile-buffer
+  :n "g \\" #'run-prolog))