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 wrote: > Carsten Dominik writes: > >> On 17.5.2013, at 00:38, Christopher Allan Webber >> wrote: >> >>> I really hate org-open-line... I

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

2013-08-30 Thread Carsten Dominik
Hi Christopher, Would you like to prepare a patch to this effect? - Carsten On 17.5.2013, at 00:38, 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 wha

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 > 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 t

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 actual

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, . > > > > (org-open-line N) > > > > Insert a new row

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 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: > > (define-key org-mod

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

2013-05-17 Thread Nicolas Richard
Christopher Allan Webber 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) > (setq org-open-line '

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 (pr

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

2013-05-17 Thread Nicolas Richard
Andreas Röhler writes: > (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 (prefix-numeric-value n))) > ((org-at-tabl

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.

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 i

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

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

2013-05-16 Thread Nick Dokos
Christopher Allan Webber 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 (kbd "C-o") 'open-