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

2010-09-03 Thread Nicolas Goaziou
> I must be dreaming... I am *sure* that, until yesterday or today, I > have always used C-c C-x C-b to insert a checkbox if none were > present; at least, that's what my fingers tell me and they have a > better memory than my head... I have always used C-c C-c to actually > mark or unmark the che

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

2010-09-03 Thread Eric S Fraga
On Fri, 03 Sep 2010 22:26:31 +0200, Nicolas Goaziou wrote: > > > > I must be dreaming... I am *sure* that, until yesterday or today, I > > have always used C-c C-x C-b to insert a checkbox if none were > > present; at least, that's what my fingers tell me and they have a > > better memory than m

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

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

2010-09-03 Thread Sebastian Rose
Eric S Fraga 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 ___ Emacs-orgmode mailing

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

2010-09-03 Thread Nicolas Goaziou
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 on git head. If you were inserting non-existing checkboxes, I guess you meant C-u C-

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 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: org-toggle-checkbox (C

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 new,

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 it

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-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-14 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-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 http://github.com/

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

2010-07-27 Thread Daniel Martins
I am on the same level as Scot and with the same doubts. Anyway one more vote to include these improvements to the core repository of org-mode ASAP. Daniel 2010/7/27 Scot Becker > Nicolas and list friends > > This sounds great. And it seems you've made it easy to try by putting in > in git.

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 nec

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

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 ag

[Orgmode] [ANN] List improvement v.2

2010-07-22 Thread Nicolas Goaziou
Hello, Here is a new, and probably final feature-wise, suggestion of list improvement in Org Mode. Table of Contents = 1 What is it about again ? 2 Is that all ? 2.1 Preserving blank lines 2.2 Timer lists 2.3 Automatic rules 2.4 `org-apply-on-list' 3 Where ca