Re: vimdiff multiple files, quickfix buffer

2010-07-14 Thread Jim Green
fantastic, save me time not to reinvent the wheels, thank u so much Marc! On 14 July 2010 21:21, Marc Weber wrote: > Excerpts from Jim Green's message of Thu Jul 15 03:13:19 +0200 2010: >> pointers would be greatly appreciated. > http://www.vim.org/scripts/script.php?script_id=102 > > Marc Weber

Re: vimdiff multiple files, quickfix buffer

2010-07-14 Thread Marc Weber
Excerpts from Jim Green's message of Thu Jul 15 03:13:19 +0200 2010: > pointers would be greatly appreciated. http://www.vim.org/scripts/script.php?script_id=102 Marc Weber -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying

vimdiff multiple files, quickfix buffer

2010-07-14 Thread Jim Green
Hi, I am writing a script that is able to vimdiff multiple files, so I don't need to vimdiff for each pair of files. i would like it to behave like quickfix, which mean I can have a buffer saving all this file pairs and can use :cw to go to the list of file pairs and :cn to navigate to next file pa

Re: AutoAlign.vim is causing problems with bib files

2010-07-14 Thread Charles Campbell
Cesar Romani wrote: I'm using the latest release of vim73a on Win XP, AutoAlign v13 Whenever I save a bib file with :w the screen pauses with a -- More -- prompt. It happens with whatever file having the extension .bib If I disable ftplugin/bib/AutoAlign.vim the problem disappears. Many thanks i

AutoAlign.vim is causing problems with bib files

2010-07-14 Thread Cesar Romani
I'm using the latest release of vim73a on Win XP, AutoAlign v13 Whenever I save a bib file with :w the screen pauses with a -- More -- prompt. It happens with whatever file having the extension .bib If I disable ftplugin/bib/AutoAlign.vim the problem disappears. Many thanks in advance, -- Cesar

Re: intra-line vertical cursor movement

2010-07-14 Thread Hoss
exactly what I was looking for. Thanks. On Jul 14, 9:08 am, Tony Mechelynck wrote: > On 14/07/10 16:41, Hoss wrote: > > > Hi, > > > If I have :set wrap, and a single line of text that spans say 3 > > physical lines of my display, how do I move the cursor up, and down, > > one line of physical dis

Re: intra-line vertical cursor movement

2010-07-14 Thread Tony Mechelynck
On 14/07/10 16:41, Hoss wrote: Hi, If I have :set wrap, and a single line of text that spans say 3 physical lines of my display, how do I move the cursor up, and down, one line of physical display at a time? The usual movement keys traverse logical lines, of course. -Todd see :help g

Re: intra-line vertical cursor movement

2010-07-14 Thread AK
On 07/14/2010 10:41 AM, Hoss wrote: Hi, If I have :set wrap, and a single line of text that spans say 3 physical lines of my display, how do I move the cursor up, and down, one line of physical display at a time? The usual movement keys traverse logical lines, of course. -Todd gj and gk. You

Python autocompletion using dictionaries

2010-07-14 Thread Pablo Giménez
Hi After having some problems using omni-completion in python I have recently discovered Pydiction plugin: http://www.vim.org/scripts/script.php?script_id=850 Which uses dictionaries, I think this is another good way to get autocompletion because it doesn't relies on loading modules likes omni-comp

intra-line vertical cursor movement

2010-07-14 Thread Hoss
Hi, If I have :set wrap, and a single line of text that spans say 3 physical lines of my display, how do I move the cursor up, and down, one line of physical display at a time? The usual movement keys traverse logical lines, of course. -Todd -- You received this message from the "vim_use" maill

Re: vim rectangular selection on windows XP

2010-07-14 Thread kapil_vim
Thanks Tim and Vlad for the prompt support. This is indeed the information i was looking for. Regards, Kapil Tim Chase-9 wrote: > > On 07/14/2010 06:12 AM, kapil_vim wrote: >> i have been using vim past quite some times on linux but now >> have >> been pushed to windows and there on g

Re: vim rectangular selection on windows XP

2010-07-14 Thread Tim Chase
On 07/14/2010 06:12 AM, kapil_vim wrote: i have been using vim past quite some times on linux but now have been pushed to windows and there on gvim i am not able to use regular CTRL-v for rectangular selection. Please tell me how do we achieve this on windows. Sounds like your vimrc i

Re: vim rectangular selection on windows XP

2010-07-14 Thread Vlad Dogaru
On Wed, Jul 14, 2010 at 04:12:11AM -0700, kapil_vim wrote: > > Hi Vim'ers > > i have been using vim past quite some times on linux but now have > been pushed to windows and there on gvim i am not able to use regular CTRL-v > for rectangular selection. Please tell me how do we achieve thi

vim rectangular selection on windows XP

2010-07-14 Thread kapil_vim
Hi Vim'ers i have been using vim past quite some times on linux but now have been pushed to windows and there on gvim i am not able to use regular CTRL-v for rectangular selection. Please tell me how do we achieve this on windows. Thanks, Kapil -- View this message in context: http:/

Re: c code condition block indentation problem

2010-07-14 Thread finback
You can try to add this in vimrc file. set cinoptions=(0 On Fri, Jul 9, 2010 at 12:13 PM, sinbad wrote: > i have the following piece of c code. > > if (condition1 && > condition2(xy) && >condition3(abc)) > > > i want to auto indent the above piece of code, so i selected that > block