Re: [O] How to set C-o back to open-line?

2013-09-13 Thread Carsten Dominik
Hi Christopher, you can now do (setq org-special-ctrl-o nil) to get what you want. Regards - Carsten On 18.5.2013, at 00:05, Christopher Allan Webber cweb...@dustycloud.org wrote: Carsten Dominik writes: On 17.5.2013, at 00:38, Christopher Allan Webber cweb...@dustycloud.org wrote:

Re: [O] How to set C-o back to open-line?

2013-05-17 Thread Christopher Allan Webber
Andreas Röhler writes: Installing this instead should fix it: (defun org-open-line (n) Insert a new row in tables, call `open-line' elsewhere. With \C-u NUMBER `open-line' is called the common way also in table context (interactive *P) (cond (n (open-line

Re: [O] How to set C-o back to open-line?

2013-05-17 Thread Nicolas Richard
Christopher Allan Webber cweb...@dustycloud.org writes: Hm, alright. Sadly there seems to be no way to change the key (very un-emacs like?) That was answered by Nick Dokos ; use : (define-key org-mode-map [remap open-line] nil) (btw, why does org use remap here is a mystery to me)

Re: [O] How to set C-o back to open-line?

2013-05-17 Thread Carsten Dominik
On 17.5.2013, at 00:38, Christopher Allan Webber cweb...@dustycloud.org wrote: I really hate org-open-line... I can see why people might want it, but it's messed up my workflow. I'd like to set C-o back. However, I have no idea what org-defkey is doing, but I expected this to work:

Re: [O] How to set C-o back to open-line?

2013-05-17 Thread Suvayu Ali
On Thu, May 16, 2013 at 09:28:35PM -0500, Christopher Allan Webber wrote: Suvayu Ali writes: That said, I'm curious what is so different about org-open-line? The docstring says the following: It is bound to C-o, insertline. (org-open-line N) Insert a new row in

Re: [O] How to set C-o back to open-line?

2013-05-17 Thread Christopher Allan Webber
Nicolas Richard writes: (setq org-open-line 'open-line) How could that possibly work ? It didn't... my bad :) I had both set that and done a redefinition of org-open-line to just call open-line like: (defun org-open-line (n) (interactive *p) (open-line n)) Guess which one actually

Re: [O] How to set C-o back to open-line?

2013-05-17 Thread Christopher Allan Webber
Carsten Dominik writes: On 17.5.2013, at 00:38, Christopher Allan Webber cweb...@dustycloud.org wrote: I really hate org-open-line... I can see why people might want it, but it's messed up my workflow. I'd like to set C-o back. However, I have no idea what org-defkey is doing, but I

[O] How to set C-o back to open-line?

2013-05-16 Thread Christopher Allan Webber
I really hate org-open-line... I can see why people might want it, but it's messed up my workflow. I'd like to set C-o back. However, I have no idea what org-defkey is doing, but I expected this to work: (define-key org-mode-map (kbd C-o) 'open-line) it isn't working! How to get the

Re: [O] How to set C-o back to open-line?

2013-05-16 Thread Nick Dokos
Christopher Allan Webber cweb...@dustycloud.org writes: I really hate org-open-line... I can see why people might want it, but it's messed up my workflow. I'd like to set C-o back. However, I have no idea what org-defkey is doing, but I expected this to work: (define-key org-mode-map

Re: [O] How to set C-o back to open-line?

2013-05-16 Thread Suvayu Ali
Hello Christopher, On Thu, May 16, 2013 at 05:38:11PM -0500, Christopher Allan Webber wrote: I really hate org-open-line... I can see why people might want it, but it's messed up my workflow. I'd like to set C-o back. However, I have no idea what org-defkey is doing, but I expected this to

Re: [O] How to set C-o back to open-line?

2013-05-16 Thread Christopher Allan Webber
Suvayu Ali writes: Hello Christopher, On Thu, May 16, 2013 at 05:38:11PM -0500, Christopher Allan Webber wrote: I really hate org-open-line... I can see why people might want it, but it's messed up my workflow. I'd like to set C-o back. However, I have no idea what org-defkey is doing,

Re: [O] How to set C-o back to open-line?

2013-05-16 Thread Andreas Röhler
Am 17.05.2013 04:28, schrieb Christopher Allan Webber: Suvayu Ali writes: Hello Christopher, On Thu, May 16, 2013 at 05:38:11PM -0500, Christopher Allan Webber wrote: I really hate org-open-line... I can see why people might want it, but it's messed up my workflow. I'd like to set C-o back.