Thorsten Jolitz <tjol...@gmail.com> writes:

> ,----
> | (org-defkey org-mode-map "\C-TAB" 'undefined)
> `----
>
> not sure if the TAB is correct here, maybe try <TAB>, <tab>, etc if it
> does not work.

I think this should be one of these:

(org-defkey org-mode-map "\C-\t" 'undefined)
(org-defkey org-mode-map [(control tab)] 'undefined)
(org-defkey org-mode-map (kbd "C-TAB") 'undefined)

You may also want to check `local-unset-key' that you can use
within `org-mode-hook'.

-- 
 Bastien

Reply via email to