Re: [O] Keybinding in org-mode

2012-08-24 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 24/08/12 13:48, Bastien wrote: > Rainer M Krug writes: > >> Following an earlier discussion, I would like to bind >> org-babel-remove-result to a key in >> org-mode to C-c x - but what is the best way to do this? > > Once Org is loaded (so that

Re: [O] Keybinding in org-mode

2012-08-24 Thread Bastien
Rainer M Krug writes: > Following an earlier discussion, I would like to bind org-babel-remove-result > to a key in org-mode > to C-c x - but what is the best way to do this? Once Org is loaded (so that `org-mode-map' is defined): (define-key org-mode-map "\C-cx-" 'org-babel-remove-result) HT