From 1678ecf8a4da37108ce598feac3c3bf66be6b0f5 Mon Sep 17 00:00:00 2001 From: Able Date: Thu, 5 Dec 2024 20:37:59 -0600 Subject: [PATCH] ctrl +tab bind for swapping windows --- config.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config.el b/config.el index ae5f9ad..0f68495 100644 --- a/config.el +++ b/config.el @@ -18,6 +18,9 @@ ;; Spam Ctrl + s to save. (global-set-key (kbd "C-s") 'save-buffer) +;; Ctrl + Tab to alternate between other windows +(global-set-key (kbd "") 'other-window) + ;; Prevent backspace from turning a tab character into 4 spaces. (setq backward-delete-char-untabify-method nil) @@ -52,7 +55,6 @@ ;; Set tab width, Doesn't seem to work :( ;; (setq-default tab-width 1) - ;;;;;;;;;;;;;;;;; ;; Minor Modes ;; ;;;;;;;;;;;;;;;;; @@ -80,7 +82,6 @@ ;; HBLang Mode ;; ;;;;;;;;;;;;;;;;; - (defvar hblang-mode-syntax-table (let ((table (make-syntax-table))) ;; C and C++-style comments.