Re: [O] New key binding C-Tab -- how to not use it

2014-10-19 Thread Thorsten Jolitz
Justin Gordon justin.gor...@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




Re: [O] New key binding C-Tab -- how to not use it

2014-10-19 Thread Bastien
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



Re: [O] New key binding C-Tab -- how to not use it

2014-10-19 Thread Brady Trainor
Bastien b...@gnu.org writes:

 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'.

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




[O] New key binding C-Tab -- how to not use it

2014-10-18 Thread Justin Gordon
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.