Re: highlight the cursorline

2006-07-11 Thread Michael Naumann
On Tuesday 11 July 2006 23:26, Raphael Brunner wrote: > Dear Users, > > is there a possibility to highlight the whole line where the cursor is? > the idea is, I could better see the whole line in a special file. > > Thanks for all your help. > Raphael > > If you have vim7 you can try :set cul

Re: Summarising all TODO / FIXMEs

2006-07-08 Thread Michael Naumann
Hi sounds like a good job for :grep for me. After :grep FIXME * use :copen to browse the results. HTH, Michael On Saturday 08 July 2006 23:58, Preben Randhol wrote: > Hi > > Is there any script for vim which can extract all TODOs, FIXMEs or > BUGs from a set of source code files and display th

Re: Motion for Cammel Notation

2006-07-04 Thread Michael Naumann
On Tuesday 04 July 2006 08:58, Jürgen Krämer wrote: > a function already takes care of not changing the last used search > pattern and the redo command, so > > function! U() > /\u\|\W > endfunction > > :onoremap u :call U() > > should be enough. In fact it will only work correctly w

Re: s?

2006-06-30 Thread Michael Naumann
On Friday 30 June 2006 15:16, Wim R. Crols wrote: > Peter Slizik wrote: > >> Not really a request for help, but I was wondering if you guys ever use > >> the 's' command. > >> It's just a shortcut for 'cl', which I almost never need. Since I don't > >> assume it was put in to be complete or somethi

Re: Preserving undo through save

2006-06-30 Thread Michael Naumann
Do you have :set hidden If not, you should. HTH, Michael On Friday 30 June 2006 11:59, Thomas Michael Engelke wrote: > Hello! > > I'm not sure if it was always the case or if this is a recent change > (through vim 7). I am not able to undo anything after saving a file. > Is this normal? What se

Re: How to replace CR with LF

2006-06-26 Thread Michael Naumann
Yes there is, strange as it may seem: s/\r/\r/ does it HTH, Michael On Monday 26 June 2006 23:20, Steve Baldwin wrote: > Thanks all. That worked very nicely. > > I'm curious though - is there any way to substitute CR with LF using > regexp's? > > Thanks, > > Steve > > > -Original Messa

Re: tab split scrolling problem

2006-06-25 Thread Michael Naumann
Yes, reproducable here. -- Michael On Sunday 25 June 2006 18:43, [EMAIL PROTECTED] wrote: > All, > > Can someone please try this out and confirm: > > On Tue, Jun 20, 2006 at 09:18:40PM -0400, [EMAIL PROTECTED] wrote: > > All, > > > > I mentioned this problem once on the list before; however, t

Re: highlighting tabbed text

2006-05-01 Thread Michael Naumann
On Monday 01 May 2006 15:24, Yakov Lerner wrote: > On 5/1/06, Michael Naumann <[EMAIL PROTECTED]> wrote: > > Is there a way to highlight a sequence of non-tabs followed by a sequence > > of tabs (/^[^\t]\+\t\+/) differently from the next such sequence? > > > > F

Re: highlighting tabbed text

2006-05-01 Thread Michael Naumann
On Monday 01 May 2006 07:04, Gerald Lai wrote: > On Mon, 1 May 2006, Michael Naumann wrote: > > > Is there a way to highlight a sequence of non-tabs followed by a sequence > > of tabs (/^[^\t]\+\t\+/) differently from the next such sequence? > > > > For exampl

highlighting tabbed text

2006-04-30 Thread Michael Naumann
Is there a way to highlight a sequence of non-tabs followed by a sequence of tabs (/^[^\t]\+\t\+/) differently from the next such sequence? For example in the line a\tb\t\tc\td I want "a\t" to be color1, "b\t\t" to be color2 and "c\t" to be color3 (or probably color1 again) Is this eve