I would like to use Ctrl + Tab in EMACS for my own use, but Emacs org mode already has this bound. How can I use my own binding instead of the org-mode binding.
In my .emacs file I use:
(global-set-key (kbd "<C-tab>") 'switch-view )
and it works everywhere except in org-mode
The key binding you describe is defined in
org.ellike this:This means that it is only valid in
org-mode-map, one of org-mode’s local keymaps. The following code adds a hook that is run when org-mode starts. It simply removes that key binding fromorg-mode-map.Add this code to your .emacs file and then restart emacs.