Re: vim shellpipe tee make output

2009-08-20 Thread sc
On Thursday 20 August 2009 00:45:35 Sergey Vakulenko wrote: Sc said right, i want to see make output on the same console, line by line in real time, not at the end of compiling process. How to do this on win32 platform, there is hint? one thing i always recommend to ppl who have to use

Minor bug in vim2html.pl

2009-08-20 Thread A. S. Budden
I'm not sure whether vim2html.pl is actually used (I notice there's an awk version as well), but in trying to convert the documentation for my plugin into html, I noticed a very minor bug in vim2html.pl. It doesn't cause a problem for vim builds as multiple files are done at once, but if you try

Re: keybindings broken under GNU screen

2009-08-20 Thread Sergey Avseyev
Maybe try map silentM-Right :tabnextCR map silentM-Left :tabpreviousCR -- Best regards, Sergey Avseyev On Wed, Aug 19, 2009 at 04:41, kkoc...@gmail.com wrote: Hi, I've setup the alt + arrow key binding for changing tab [1], this stops working under GNU screen, while works correctly when

Re: Vim Tutorial Screencasts

2009-08-20 Thread Derek Wyatt
On Wed, Aug 19, 2009 at 10:07 PM, David Fishburn dfishburn@gmail.comwrote: In addition to the other comments on how you might improve your videos can I suggest you create another video which precedes all the other videos. This one should show you how to setup your .vimrc file and what

Retaining cursor position and getting back the # character's normal use

2009-08-20 Thread Bernard El-Hagin
Hi, I have two questions: 1) Let's say I have the following code: if ( whatever1 ) { # do stuff 1; } if ( whatever2 ) { # do stuff 2; } And let's say I'm in normal mode and have my cursor on the first e of whatever1. When I now use j to move a couple of lines down, I

Re: vim over ssh: no visual block?

2009-08-20 Thread Bastiaan Wakkie
Hi Tim, Some how I do not have any coloring nor visual block when I connect to my gentoo server with vim 7.2. I do not understand this. Is there a setting to get this to work over ssh? does it work if you're local to the server (and thus just an ssh issue)? Do visual commands work but

RE: vim shellpipe tee make output

2009-08-20 Thread John Beckett
Please bottom post on this list. Quote a small (relevant) part of the message you are replying to, and put your text underneath. See the list guidelines: http://groups.google.com/group/vim_use/web/vim-information --~--~-~--~~~---~--~~ You received this message

using regexp to search for Unicode code points and properties

2009-08-20 Thread Brian Anderson
I'm interested in learning how to use regular expressions in Vi(m) to search for Unicode code points. In a book about regexp, it describes how to search for Unicode code points by various means, and for various programming languages. The book describes searching for a specific Unicode code

RE: Remove message Cannot Load registered type library : Do you want to register

2009-08-20 Thread geoffrey.wood
I have copied my gvim installation on a USB stick. When I place that USB stick into another system and I run gvim from there it comes with the message Cannot Load registered type library Do you want to register Yes/No Can this message be removed? And if so how to do that? I assume

Re: using regexp to search for Unicode code points and properties

2009-08-20 Thread Jürgen Krämer
Hi, Brian Anderson wrote: I'm interested in learning how to use regular expressions in Vi(m) to search for Unicode code points. In a book about regexp, it describes how to search for Unicode code points by various means, and for various programming languages. The book describes

Re: using regexp to search for Unicode code points and properties

2009-08-20 Thread Dennis Benzinger
Am 20.08.2009 15:47, Brian Anderson schrieb: I'm interested in learning how to use regular expressions in Vi(m) to search for Unicode code points. In a book about regexp, it describes how to search for Unicode code points by various means, and for various programming languages. The

Re: Problem with minibuf explorer and project plugin

2009-08-20 Thread Alessandro Antonello
Hi, Nicolas. sorry for the follow up. The settings in my vimrc concerning minibufexplorer are: let g:miniBufExplorerMoreThanOne=1 let g:miniBufExplUseSingleClick = 1 let g:miniBufExplModSelTarget = 1 let g:miniBufExplMapCTabSwitchBufs = 1 let python_highlight_all =1 let

Re: using regexp to search for Unicode code points and properties

2009-08-20 Thread Brian Anderson
Thanks Dennis Jurgen, I thought it was probably in the help files, but I couldn't find it. Brian --~--~-~--~~~---~--~~ You received this message from the vim_use maillist. For more information, visit http://www.vim.org/maillist.php

Re: changing what counts as a paragraph

2009-08-20 Thread Wayne
Hi John Why people hates bottom post? B.R. Wayne On 8/20/09, John Beckett johnb.beck...@gmail.com wrote: Please bottom post on this list. Quote a small (relevant) part of the message you are replying to, and put your text underneath. See the list guidelines:

Re: changing what counts as a paragraph

2009-08-20 Thread Raúl Núñez de Arenas Coronado
Saluton Wayne :) Wayne b...@gmail.com dixit: Why people hates bottom post? First of all, you topposted after being warned about list guidelines. Please DON'T TOP POST ON THIS LIST. See the list guidelines, again: http://groups.google.com/group/vim_use/web/vim-information Second, it's not a

Re: using regexp to search for Unicode code points and properties

2009-08-20 Thread Brian Anderson
I read through the help files on /\%u, but now I have a question about searching for composing or combining characters. I have a Cyrillic text, using UTF-8 as the encoding, and the characters are appearing correctly on the screen. When I select a character and press ga, it gives me the

Applying 4 commands repetetively

2009-08-20 Thread drlatex
I want to apply the same 4 commands to about 500 different files, and since its the same commands in the same order each time, I don't want to repetetively type the commands over and over again. I want to do: vi 1* dd :set local noswapfile undolevels=-1 :%join! :n dd :set local noswapfile

Re: separate one file into many files

2009-08-20 Thread drlatex
Thank you very much. That makes a lot more sense. I'm acutally using vim in windows, and I did add that plugin to the location where all the other plugins are located, but according to :scriptnames, vim doens't automatically load the one that I added (the one you wrote) ... it loads all the

Re: Applying 4 commands repetetively

2009-08-20 Thread Chris Mueller
On Thu, Aug 20, 2009 at 3:38 PM, drlatexn_datt...@hotmail.com wrote: I want to apply the same 4 commands to about 500 different files, and since its the same commands in the same order each time, I don't want to repetetively type the commands over and over again. I want to do: vi 1* dd

Re: Applying 4 commands repetetively

2009-08-20 Thread Tim Chase
I want to apply the same 4 commands to about 500 different files, and since its the same commands in the same order each time, I don't want to repetetively type the commands over and over again. I want to do: vi 1* dd :set local noswapfile undolevels=-1 :%join! :n dd :set local

RE: changing what counts as a paragraph

2009-08-20 Thread Gene Kwiecinski
Hi John Why people hates bottom post? B.R. Wayne Ummm, people *like* bottom-post. Once I see a top-poster's text come to an end, then the On date, person said:-line followed by an earlier reply, I simply stop reading. If that means I don't have any context as to what you were

Re: R indentation

2009-08-20 Thread Ben Fritz
On Aug 20, 3:36 pm, Peng Yu pengyu...@gmail.com wrote: I put the above code in my ~/.vim/indent/r.vim file. But vim still can not correctly indent, for example, the following file. Can somebody take a look what the problem is? Only if you tell us what you want, and what you're getting

Re: Applying 4 commands repetetively

2009-08-20 Thread drlatex
Wow! :argdo works perfectly! I thought I would have to learn a new syntax for writing loops or something! I'm just curious though, why does it not work when I used 'dd' instead of '1d' ?? I've actually never used '1d' before... I type # dd, where # is the number of lines that I want to remove.

Re: Applying 4 commands repetetively

2009-08-20 Thread Tim Chase
Wow! :argdo works perfectly! I thought I would have to learn a new syntax for writing loops or something! There are similar analogs for bufdo, windo, and tabdo (they should all be in the same section of the help), so you can perform a sequence of Ex commands on whichever set of

Re: Applying 4 commands repetetively

2009-08-20 Thread Gary Johnson
On 2009-08-20, Tim Chase wrote: dd is a normal-mode command. 1d is an Ex command for delete line #1. The [arg|win|tab|buf]do commands take Ex commands, rather than normal-mode commands. The normal-mode way would be to do something like argdo ... exec dd I think you meant

Re: vim plugin for mac mail

2009-08-20 Thread Israel Chauca Fuentes
On Aug 20, 9:15 am, Peng Yu pengyu...@gmail.com wrote: I'm using Mac Mail to check my emails. I would love to have an vim plugin so that I use vim to edit my emails. I know that there is a plugin for thunderbird. I am wondering if there is one for Mac Mail. MacVim can '(a)dd Edit in MacVim

Re: R indentation

2009-08-20 Thread Peng Yu
On Aug 20, 4:51 pm, Ben Fritz fritzophre...@gmail.com wrote: On Aug 20, 3:36 pm, Peng Yu pengyu...@gmail.com wrote: I put the above code in my ~/.vim/indent/r.vimfile. Butvimstill can not correctly indent, for example, the following file. Can somebody take a look what the problem is?

Re: R indentation

2009-08-20 Thread Tom
The indented result of the 'whatcdf.R' is like the following, which is obviously not correct. 'for' statement should be aligned with 'library'; 'print' should be aligned with 'pname' in the 3rd line. library(makecdfenv)   for (f in list.celfiles()) {     pname=cleancdfname(whatcdf(f))    

Re: Problem with minibuf explorer and project plugin

2009-08-20 Thread Tomas Kramar
2009/8/20 Alessandro Antonello antonello@gmail.com: Could you send the versions of MiniBufExplorer and Project plugins that you are using? The problem is not caused by the Project plugin. I do not use it and still experience similar (mis)behavior. I do however use NERD_tree, which -