From f7212c49b7ba6b0fff930ca4db0081872e829c3f Mon Sep 17 00:00:00 2001 From: Tony Zorman Date: Tue, 10 Sep 2024 11:35:08 -0300 Subject: [PATCH] Set "C-c C-z" for bqn-comint-bring at both bqn{,-comint}-mode-map --- bqn-mode.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bqn-mode.el b/bqn-mode.el index d1bf012..c03f566 100644 --- a/bqn-mode.el +++ b/bqn-mode.el @@ -266,6 +266,7 @@ BQN buffers (or recreate them)." (when bqn-glyph-map-modifier (set-keymap-parent bqn-mode-map (make-composed-keymap prog-mode-map bqn--glyph-map))) + (keymap-set bqn-mode-map "C-c C-z" #'bqn-comint-bring) (when bqn-use-input-method (activate-input-method "BQN-Z")) (setq-local syntax-propertize-function bqn--syntax-propertize) @@ -467,6 +468,7 @@ bqn-comint-process-session and echoes the result." (when bqn-glyph-map-modifier (set-keymap-parent bqn-comint-mode-map (make-composed-keymap comint-mode-map bqn--glyph-map))) + (keymap-set bqn-comint-mode-map "C-c C-z" #'bqn-comint-bring) (when bqn-use-input-method (activate-input-method "BQN-Z")) (setq-local syntax-propertize-function bqn--syntax-propertize)