Re: set viminfo='100,:200,50,s10,h won't change the number of commandlines saved

2009-10-11 Thread Jürgen Krämer
Hi, Lily wrote: I use set viminfo='100,:200,50,s10,h in my .vimrc to try to make vim remember more lines of commands, but it doesn't work, and set viminfo returns '100,:200,50,s10,h. Anyone knows why? I'm not sure, but you might have to :set history=200 as well. Regards,

available vimtutor languages?

2009-10-11 Thread Kim Schulz
hi, Is there a list over available translations of the vimtutor tutorial? I can see that my installation only comes with the english version but as the documentations states that other languages are available, I would guess that I could find them somewhere. So what languages are available and

Re: available vimtutor languages?

2009-10-11 Thread Anton Bobov
Hi. On Sun, Oct 11, 2009 at 11:49:58 +0200, Kim Schulz wrote: Is there a list over available translations of the vimtutor tutorial? I can see that my installation only comes with the english version but as the documentations states that other languages are available, I would guess that I

Re: some option settings have to be at about bottom or last of vimrc file. [SORRY, IT IS REAL]

2009-10-11 Thread Dewr
Tim solved my problem. http://groups.google.com/group/vim_use/browse_thread/thread/db2e3a9be9c87612# Thank you. On Oct 10, 11:25 pm, Robert H sigz...@gmail.com wrote: On 10/10/09 1:40 AM, Dewr wrote: some option settings have to be at aboutbottomor last of vimrc file! What is this?? I

Re: available vimtutor languages?

2009-10-11 Thread Bram Moolenaar
Kim Schulz wrote: Is there a list over available translations of the vimtutor tutorial? I can see that my installation only comes with the english version but as the documentations states that other languages are available, I would guess that I could find them somewhere. So what

Re: some option settings have to be at about bottom of vimrc file.

2009-10-11 Thread Tim Chase
Thank you very much! these codes were in example_vimrc. Then all you have to do is either 1) move the source example_vimrc to the top of your vimrc (my preferred solution because it will help prevent similar issues if they would normally appear later) or 2) make sure that your set nobackup

Re: set viminfo='100,:200,50,s10,h won't change the number of commandlines saved

2009-10-11 Thread Brett Stahlman
On Oct 11, 4:37 am, Jürgen Krämer j...@jottkaerr.de wrote: Hi, Lily wrote: I use     set viminfo='100,:200,50,s10,h in my .vimrc to try to make vim remember more lines of commands, but it doesn't work, and     set viminfo returns '100,:200,50,s10,h. Anyone knows why? I'm not

ctags with correct options from all plugins

2009-10-11 Thread Nathan Huesken
Hi, For omnicppcompletion to work correctly, ctags has to be invoked like this: ctags -R –c++-kinds=+p –fields=+iaS –extra=+q But there are many plugins (AutoTag ,Taglist) which generate the tag file for me ... Can I somehow tell these plugins, to use the command above? Regards, Nathan --

Toggling quickfix window

2009-10-11 Thread David Chanters
hi all, i had a look through the vim tips wiki to see if I can do the following with the quickfix window, but didn't see anything relevant -- but if I have missed it, do please point me there. I do a lot of C programming. What I would like is the following to happen -- a way of binding make!

sticky split windows across tabs

2009-10-11 Thread David Chanters
Hi all, Thinking about things like the quickfix window, it's often a nice idea of mine to want to have a split window stick or follow me across tabs -- I don't use tabs often in vim to edit files (I prefer split windows) but is there a means to do this? I thought it might be possible to cheat

Different buffer list for different tabs?

2009-10-11 Thread borasah
Hi, What I would like to do is to work on different projects in the same Vim program. As far as I know a tab page holds a group of windows, not a buffer list but I am wondering if I can use one tab for one project and the other tab for the other project so each project has different buffer

Re: Different buffer list for different tabs?

2009-10-11 Thread Raúl Núñez de Arenas Coronado
Saluton :) b...@gmail.com skribis: What I would like to do is to work on different projects in the same Vim program. As far as I know a tab page holds a group of windows, not a buffer list but I am wondering if I can use one tab for one project and the other tab for the other project so each

Re: Different buffer list for different tabs?

2009-10-11 Thread Tim Chase
What I would like to do is to work on different projects in the same Vim program. As far as I know a tab page holds a group of windows, not a buffer list but I am wondering if I can use one tab for one project and the other tab for the other project so each project has different buffer

:make and -j

2009-10-11 Thread vimml
Hi all, I don't know if this is commonly used, but if not, maybe someone will have fun with it. I know that it is nothing relly cool ;) If there is a better way to do it, tell me :) I work on a set of different machines with different numbers of cpu cores. On the 8 core machine I often type

Re: Different buffer list for different tabs?

2009-10-11 Thread borasah
Saluton :) Salute :) b...@gmail.com skribis: What I would like to do is to work on different projects in the same Vim program. As far as I know a tab page holds a group of windows, not a buffer list but I am wondering if I can use one tab for one project and the other tab for the

docbug vim 7.2.108 (on suse 11.1)

2009-10-11 Thread Linda W
Under maxmem, it says: 'maxmemtot' 'mmt' number (default between 2048 and 10240 (system dependent) or half the amount of memory available) global {not in Vi} Maximum

Re: Different buffer list for different tabs?

2009-10-11 Thread Chris Suter
On Sun, Oct 11, 2009 at 6:32 PM, bora...@gmail.com wrote: Saluton :) Salute :) b...@gmail.com skribis: What I would like to do is to work on different projects in the same Vim program. As far as I know a tab page holds a group of windows, not a buffer list but I am wondering if

Re: ctags with correct options from all plugins

2009-10-11 Thread stone
2009/10/12 Nathan Huesken v...@lonely-star.org Hi, For omnicppcompletion to work correctly, ctags has to be invoked like this: ctags -R –c++-kinds=+p –fields=+iaS –extra=+q But there are many plugins (AutoTag ,Taglist) which generate the tag file for me ... Can I somehow tell these

Re: Toggling quickfix window

2009-10-11 Thread winterTTr
There is a autocmd Event of QuickFix They are QuickFixCmdPre” and QuickFixCmdPost I think you could do something at there event . However , maybe there is not a simple way to do what you want , and , you may have to write some vim function for this. 2009/10/12 David Chanters

Re: ctags with correct options from all plugins

2009-10-11 Thread winterTTr
read the doc for there plugin or try to read the code of them and hack it. And , maybe is a better way to set the tag by yourself than to generate the tags with specific plugin itself. 2009/10/12 Nathan Huesken v...@lonely-star.org: Hi, For omnicppcompletion to work correctly, ctags has to

Re: Yankring and remapping of @q

2009-10-11 Thread David Fishburn
On Sat, Oct 10, 2009 at 1:08 PM, meino.cra...@gmx.de wrote: ...  I often use a combo of qq (macro recording into register q) and  @q (execution of that macro via execution of the contents of  register q). ...  For that reas I did a    nmap C-e @q  in my ~/,vimrc (I am using vim with

Re: ctags with correct options from all plugins

2009-10-11 Thread David Fishburn
2009/10/12 Nathan Huesken v...@lonely-star.org For omnicppcompletion to work correctly, ctags has to be invoked like this: ctags -R –c++-kinds=+p –fields=+iaS –extra=+q But there are many plugins (AutoTag ,Taglist) which generate the tag file for me ... Can I somehow tell these plugins,

Paste text end of all lines

2009-10-11 Thread PSN
Hi All, My apologies if the same question is asked before. However, i have tried searching but could not find anything. Does any of you know how can i paste some text at the end of each line in a file. Note that the lines need not be of the same length Example: Before -- line 1 line two

Re: docbug vim 7.2.108 (on suse 11.1)

2009-10-11 Thread Ken Bloom
On Sun, 11 Oct 2009 15:32:57 -0700, Linda W wrote: Under maxmem, it says: 'maxmemtot' 'mmt' number (default between 2048 and 10240 (system dependent) or half the amount of memory available)

Re: Paste text end of all lines

2009-10-11 Thread winterTTr
try to %s/$/balaba/ 2009/10/12 PSN prakash...@gmail.com: Hi All, My apologies if the same question is asked before. However, i have tried searching but could not find anything. Does any of you know how can i paste some text at the end of each line in a file. Note that the lines need not