summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2026-04-04 12:37:43 +0100
committertslil <tslil@posteo.de>2026-04-04 12:37:52 +0100
commit274ce02053a54112945df747cbaf3ca606842805 (patch)
treeb6cbe55dcbdd8dccdfa8daf2944f006cffc9b379
parent594cac06c7c784b040008af618bcb8071d2b82c6 (diff)
[emacs] fix some more bad keybindings for zig-mode
-rw-r--r--emacs/inits/20-programming.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/emacs/inits/20-programming.el b/emacs/inits/20-programming.el
index dc6612c..21c2f7b 100644
--- a/emacs/inits/20-programming.el
+++ b/emacs/inits/20-programming.el
@@ -1,4 +1,4 @@
-;; Time-stamp: <2026-03-25 11h49 GMT (242d7eec)>
+;; Time-stamp: <2026-04-03 19h58 BST (5733a89e)>
;; -----------------------------------------------------------------------------
;; General setup
@@ -294,9 +294,9 @@
(interactive)
(zig--run-cmd "build run"))
:bind (:map zig-mode-map
- ("M-," . lh-backward-delim)
- ("M-." . lh-forward-delim)
- ("M-m" . lh-matching-delim)
+ ("C-c l b" . lh-backward-delim)
+ ("C-c l f" . lh-forward-delim)
+ ("C-c l m" . lh-matching-delim)
("M-p" . beginning-of-defun)
("M-n" . end-of-defun)
("C-c C-c" . zig-compile)