summaryrefslogtreecommitdiff
path: root/emacs-config.org
diff options
context:
space:
mode:
authorBlake Romero <blake@blkrom.com>2025-07-09 20:57:08 +0100
committerBlake Romero <blake@blkrom.com>2025-07-09 20:57:08 +0100
commit99a4475757e35d173e3a305e733029804e133c16 (patch)
treee691fb6aa0725334e0f342723531dbb9f287ce14 /emacs-config.org
parentc14aab5d2182024441b6405c928adffa444e62cf (diff)
Add C-[ to available keybinding keys
Diffstat (limited to 'emacs-config.org')
-rw-r--r--emacs-config.org5
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org
index 63e5b1b..e59a755 100644
--- a/emacs-config.org
+++ b/emacs-config.org
@@ -84,6 +84,11 @@ Enable which-key that displays a pop-up window of posisble keybindings sequences
#+end_src
* Global Keybindings
+Unlock previously unusable keybinding.
+#+begin_src elisp
+ (define-key input-decode-map [?\C-\[] (kbd "<C-[>"))
+#+end_src
+
File actions.
#+begin_src elisp
(keymap-global-set "C-x x R" #'rename-visited-file)