Re: move to next error

2011-08-02 Thread Ben Fritz
On Aug 1, 4:30 pm, Christian Brabandt wrote: > Hi Bram, > > this patch fixes this issue from the todo list: > > , > | 8   Add a command to jump to the next character highlighted with > | "Error". > ` > > It implements the [e and ]e movement commands, which move to the > previous or next

Re: Bug in bufexplorer plugin related to 'Show buffers/tab'

2011-08-02 Thread Jeff
Hi James, Sorry for the issue.  I will take a look at it and see if I can figure out what is going on.  As I do not have Linux running, I will hopefully be able to reproduce this under Windows 7. -Jeff > >From: James Vega >To: vim_dev >Cc: Jeff Lanzarotta

Clarification of U command

2011-08-02 Thread Ben Fritz
I learned today that I had misunderstood the U command, and additionally made changes to a "getting started" page on the wiki that corrected the same misunderstanding: http://vim.wikia.com/wiki/Undo_and_Redo I had thought that U worked on the current line. Rather, it works on the most recently mo

Re: Clarification of U command

2011-08-02 Thread Bram Moolenaar
Ben Fritz - > I learned today that I had misunderstood the U command, and > additionally made changes to a "getting started" page on the wiki that > corrected the same misunderstanding: > > http://vim.wikia.com/wiki/Undo_and_Redo > > I had thought that U worked on the current line. Rather, it w

Re: [patch] move to next error

2011-08-02 Thread Bram Moolenaar
Christian Brabandt wrote: > this patch fixes this issue from the todo list: > > > , > | 8 Add a command to jump to the next character highlighted with > | "Error". > ` > > It implements the [e and ]e movement commands, which move to the > previous or next error. And while I was at

Re: Clarification of U command

2011-08-02 Thread Benjamin Fritz
On Tue, Aug 2, 2011 at 3:30 PM, Bram Moolenaar wrote: > > Ben Fritz - >> Change: >> >> U Undo all latest changes on one line. {Vi: while not >> moved off of it} >> >> to: >> >> >> U                     Undo all changes on the most recently modified line >

Re: [patch] move to next error

2011-08-02 Thread Christian Brabandt
Hi Small update to the patch. What the patch does not yet do is take the matchlist into account. Should it move there too? On Mo, 01 Aug 2011, Christian Brabandt wrote: > @@ -6329,7 +6330,7 @@ > curwin->w_set_curswant = TRUE; > > i = do_search(cap->oap, dir, pat, cap->count1, > -

Re: [patch] move to next error

2011-08-02 Thread Christian Brabandt
Hi Bram! On Di, 02 Aug 2011, Bram Moolenaar wrote: > > Christian Brabandt wrote: > > > this patch fixes this issue from the todo list: > > > > > > , > > | 8 Add a command to jump to the next character highlighted with > > | "Error". > > ` > > > > It implements the [e and ]e moveme