* New key binding C-Tab -- how to not use it
@ 2014-10-19 4:17 Justin Gordon
2014-10-19 7:25 ` Thorsten Jolitz
0 siblings, 1 reply; 4+ messages in thread
From: Justin Gordon @ 2014-10-19 4:17 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 268 bytes --]
I just updated emacs org-mode and when visiting org files, this binding
takes effect:
C-TAB (org-force-cycle-archived)
Cycle a tree even if it is tagged with ARCHIVE.
What's the best way to disable this binding?
I use C-Tab for moving between windows.
Thanks.
[-- Attachment #2: Type: text/html, Size: 417 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: New key binding C-Tab -- how to not use it
2014-10-19 4:17 New key binding C-Tab -- how to not use it Justin Gordon
@ 2014-10-19 7:25 ` Thorsten Jolitz
2014-10-19 20:20 ` Bastien
0 siblings, 1 reply; 4+ messages in thread
From: Thorsten Jolitz @ 2014-10-19 7:25 UTC (permalink / raw)
To: emacs-orgmode
Justin Gordon <justin.gordon@gmail.com> writes:
> I just updated emacs org-mode and when visiting org files, this
> binding takes effect:
>
> C-TAB (org-force-cycle-archived)
> Cycle a tree even if it is tagged with ARCHIVE.
>
> What's the best way to disable this binding?
>
> I use C-Tab for moving between windows.
Try
,----
| (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.
--
cheers,
Thorsten
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: New key binding C-Tab -- how to not use it
2014-10-19 7:25 ` Thorsten Jolitz
@ 2014-10-19 20:20 ` Bastien
2014-10-19 22:45 ` Brady Trainor
0 siblings, 1 reply; 4+ messages in thread
From: Bastien @ 2014-10-19 20:20 UTC (permalink / raw)
To: Thorsten Jolitz; +Cc: emacs-orgmode
Thorsten Jolitz <tjolitz@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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: New key binding C-Tab -- how to not use it
2014-10-19 20:20 ` Bastien
@ 2014-10-19 22:45 ` Brady Trainor
0 siblings, 0 replies; 4+ messages in thread
From: Brady Trainor @ 2014-10-19 22:45 UTC (permalink / raw)
To: emacs-orgmode
Bastien <bzg@gnu.org> writes:
> Thorsten Jolitz <tjolitz@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'.
Sometimes I use `C-h k', describe-key, which gives me <C-Tab> as
another candidate. This can help as it can vary between OS', for
instance Ctl+Scroll-up does vary here.
(My strategy propogates from Xah Lee's blog.)
--
Brady
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-10-19 22:45 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-19 4:17 New key binding C-Tab -- how to not use it Justin Gordon
2014-10-19 7:25 ` Thorsten Jolitz
2014-10-19 20:20 ` Bastien
2014-10-19 22:45 ` Brady Trainor
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.