Re: [Orgmode] [ANN] List improvement v.2

2010-09-03 Thread Eric S Fraga
On Thu, 2 Sep 2010 10:13:09 +0200, Carsten Dominik carsten.domi...@gmail.com wrote: Hi everyone, I have now merged Nicolas' branch into the current master. Hopefully all will go well. If not, I am sure Nicolas can fix things on short notice. One quick problem I have run into today:

Re: [Orgmode] [ANN] List improvement v.2

2010-09-03 Thread Sebastian Rose
Eric S Fraga ucec...@ucl.ac.uk writes: org-toggle-checkbox (C-c C-x C-b) doesn't seem to do anything now? I have to put in the checkboxes manually (not a severe problem obviously :-). That works here as well as `C-c C-c' Sebastian ___

Re: [Orgmode] [ANN] List improvement v.2

2010-09-03 Thread Eric S Fraga
On Fri, 03 Sep 2010 16:34:36 +0200, Nicolas Goaziou n.goaz...@gmail.com wrote: Hello, Eric S Fraga writes: One quick problem I have run into today: org-toggle-checkbox (C-c C-x C-b) doesn't seem to do anything now? I have to put in the checkboxes manually. I cannot reproduce it

Re: [Orgmode] [ANN] List improvement v.2

2010-09-02 Thread Carsten Dominik
Hi everyone, I have now merged Nicolas' branch into the current master. Hopefully all will go well. If not, I am sure Nicolas can fix things on short notice. Thanks to Nicolas for the big chunk of work! - Carsten On Jul 22, 2010, at 11:08 PM, Nicolas Goaziou wrote: Hello, Here is a

Re: [Orgmode] [ANN] List improvement v.2

2010-08-27 Thread Carsten Dominik
Hi, I am close to merging these changes into the master branch. Any objections? - Carsten On Jul 22, 2010, at 11:08 PM, Nicolas Goaziou wrote: Hello, Here is a new, and probably final feature-wise, suggestion of list improvement in Org Mode. Table of Contents = 1 What is

Re: [Orgmode] [ANN] List improvement v.2

2010-08-15 Thread Carsten Dominik
Hi Nicolas, I have finally started to look at your changes to the list implementation. Lots of it is very good! I like for example that TAB indentation now works a lot better. Here are a few problems I noted so far: 1 Error when pressing M-RET in second line after list

Re: [Orgmode] [ANN] List improvement v.2

2010-08-15 Thread Nicolas Goaziou
Carsten Dominik writes: Hello, But it will break existing documents when exported to LaTeX It will break existing documents when exporting to anything (except ASCII). You can use the following (quick and dirty) code to make the transition easier: (defun org-switch-to-new-lists () Make

Re: [Orgmode] [ANN] List improvement v.2

2010-08-15 Thread Nicolas Goaziou
Argh, it should be: (defun org-switch-to-new-lists () Make current buffer compatible with new list definition. (goto-char (point-min)) (let ((case-fold-search t)) (while ( (point) (point-max)) (while (and (org-in-item-p) (not (org-at-item-p))

Re: [Orgmode] [ANN] List improvement v.2

2010-07-27 Thread Scot Becker
Nicolas and list friends This sounds great. And it seems you've made it easy to try by putting in in git. Since my git usage consists almost exclusively of pulling from the org-mode repository, and I've never dealt with testing branches, would one of you be so kind as to feed me the commands

Re: [Orgmode] [ANN] List improvement v.2

2010-07-27 Thread Nicolas Goaziou
Hello, Scot Becker writes: Should I pull a separate repo, or make a branch on the one I have? Both options are possible. In order to make a specific branch in your current repo, it's a two steps move (and one optional): git checkout -b new-lists git remote add ngz

Re: [Orgmode] [ANN] List improvement v.2

2010-07-25 Thread Nicolas Goaziou
Hello, Eric Schulte writes: 2) This is very minor, but could you rebase your branch against master? That would make switching back and forth slightly easier. I rebased against master and pushed to github. 3) Since I can't help but relate things to Babel... What do you think about

Re: [Orgmode] [ANN] List improvement v.2

2010-07-23 Thread Eric Schulte
Hi Nicolas, This looks really great, I have applied it to my setup and will be stress testing it over the next couple of days. A couple of quick points: 1) The url to use for cloning should be http://github.com/ngz/org-mode-lists.git 2) This is very minor, but could you rebase your branch