The C-c TAB binding in Org mode #79
-
I confirm that...
What is your question?How is I was able to redefine the binding myself, but I'm still wondering what is doing this in the first place. (define-key org-mode-map (kbd "C-c TAB") #'org-table-toggle-column-width)Emacs 30.2 / Org mode version 9.8 / Doom latest I can't find where the key is being defined. The Help for the binding doesn't have the information needed. (It also tells me that the function is obsolete)
The binding is correct in Emacs -Q, so the culprit can only be somewhere in my config or Doom (but I don't find it in my config.el or custom.el). Something possibly interesting is that Doom binds the Can't find any suspicious bindings with this grep command either: System informationNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
As of doomemacs/doomemacs@d2d805a this should be fixed. The issue is that, due to historical reasons, Emacs cannot distinguish between Thanks for bringing it to my attention! |
Beta Was this translation helpful? Give feedback.
As of doomemacs/doomemacs@d2d805a this should be fixed.
The issue is that, due to historical reasons, Emacs cannot distinguish between
C-iandTAB, so binding to one is equivalent to binding to the other. Doom adds a special<C-i>input event here, so that they can be distinguished, so I've moved the problematic keybind to that instead, which should revertC-c TABback to its original command (org-ctrl-c-ctrl-c).Thanks for bringing it to my attention!