From 6d1e0d6c9f43562abeb3105cbbaa3c1a7ad6401b Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Sun, 10 Nov 2024 01:47:12 -0500 Subject: [PATCH] fix(emacs): limit keybind to irony mode mapping Signed-off-by: Lucas Sta Maria --- .emacs.d/include/priime-languages.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.emacs.d/include/priime-languages.el b/.emacs.d/include/priime-languages.el index eaef563..836f66d 100644 --- a/.emacs.d/include/priime-languages.el +++ b/.emacs.d/include/priime-languages.el @@ -100,7 +100,7 @@ (use-package inf-elixir :straight t) (use-package nix-mode :straight t) (use-package irony :straight t - :bind (("C-c C-c" . custom-compile-c++)) + :bind (:map irony-mode-map ("C-c C-c" . custom-compile-c++)) :hook ((c++-mode c-mode) . irony-mode)) (provide 'priime-languages)