From 92b1aacc70d49f110482cb0cefd98b681f549642 Mon Sep 17 00:00:00 2001 From: gered Date: Thu, 19 Dec 2024 17:17:42 -0500 Subject: [PATCH] add keybinds for compile and gdb --- emacs.d/keybinds.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/emacs.d/keybinds.el b/emacs.d/keybinds.el index db5ac74..26340c5 100644 --- a/emacs.d/keybinds.el +++ b/emacs.d/keybinds.el @@ -41,3 +41,6 @@ (global-set-key (kbd "C-x C-k") #'kill-this-buffer) (global-set-key (kbd "C-SPC") #'completion-at-point) + +(global-set-key (kbd "C-c C-b C-c") #'compile) +(global-set-key (kbd "C-c C-b C-d") #'gdb)