Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

vim · Vim (Vi IMproved) text editor users list

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 131891 - 131920 of 137836   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
131891 Gary Johnson
garyjohn@... Send Email
Jun 23, 2012
5:32 pm
... [...] The error message information was great but doesn't help much without also knowing what those lines contain. You wrote earlier: ... ...
131892 Eric Weir
eeweir@... Send Email
Jun 23, 2012
6:11 pm
... Yes, I did, Gary. I assumed 'all' was a typo on your part. Should've known better with you literal-minded programmers. -;) When I changed it back to lower...
131893 Dotan Cohen
dotancohen@... Send Email
Jun 23, 2012
6:46 pm
... Thank you Christian! This is a good start for me to build upon, it is full of things that I am unfamiliar with. It is pretty broken for most uses, but I...
131894 Christian Brabandt
cblists@... Send Email
Jun 23, 2012
7:18 pm
Hi Dotan! ... <sid> is a way to prevent polluting the global Vim namespace with names from functions and plugins. It get resolved by Vim to something like ...
131895 Andre Majorel
aym-miv@... Send Email
Jun 23, 2012
8:20 pm
... Someone at a former employer had added a pedal to his keyboard for [shift]. Reportedly, it was pretty effective. SMD has made that harder to pull but I've...
131896 John Magolske
listmail@... Send Email
Jun 23, 2012
8:25 pm
I'm finding that $PATH is different in Vim than in the parent shell. In a shell I see that $PATH reflects what's in my ~/.zshrc : % echo $SHELL /bin/zsh % echo...
131897 Marc Weber
marco-oweber@... Send Email
Jun 23, 2012
8:35 pm
You can change PATH in vim (as you can change any env var): let $PATH='/no-such/dir&#39; and then try :!echo 'hello world' your shell will no longer be found. Why...
131898 Tarlika Elisabeth Sch...
vim@... Send Email
Jun 23, 2012
10:01 pm
Hello Ben, Sorry about the delay in replying. On Mon, 14 May 2012 09:31:23 -0700 (PDT) ... 2) with or without underline as per vim colour scheme 3) As you...
131899 Paul
google01239@... Send Email
Jun 23, 2012
10:59 pm
... It looks like you have your PATH set in two different places. Have a look at :help :! and :help shellcmdflag - set it to -ic to see if it helps. -- . -- ...
131900 Lucas Hoffmann
lucashoffmann42@... Send Email
Jun 24, 2012
12:46 am
Hello all, I use "set viminfo='100,<50,s10,h,%" to keep my bufferlist. But when I restart Vim I still get an additional [No Name] buffer. I don't want this but...
131901 Chris Collision
cfcollision@... Send Email
Jun 24, 2012
12:46 am
... I would just put the cursor on the first " and type v/". Perhaps this is too basic for your needs, though. -- -Collision http://twitter.com/cfCollision |...
131902 Lucas Hoffmann
lucashoffmann42@... Send Email
Jun 24, 2012
12:46 am
On 23. Jun 2012, at 19:23, Paul wrote: ... It's not entirely what you're after but the SyntaxMotion script can kind of help:...
131903 John Magolske
listmail@... Send Email
Jun 24, 2012
12:51 am
... Yes, after doing :set shellcmdflag=-ic to specify that vim use an interactive shell I see PATH as what I have set in my ~/.zshrc. But placing "set...
131904 Dotan Cohen
dotancohen@... Send Email
Jun 24, 2012
5:44 am
... Thanks, Christian! ... Thanks. That is an interesting solution to the namespaces issue, I will have to read more about that. ... Yes, I figured that it was...
131905 Andre Rodier
andre.rodier@... Send Email
Jun 24, 2012
12:51 pm
... Thanks, Ben. It's working like a charm. Sorry for the late answer as well, I did not expected too much from this mailing list, now. It's amazing the number...
131906 Bee
beeyawned@... Send Email
Jun 24, 2012
4:36 pm
2match has been set and is working. ... Why does this not set the search register? let @/=matcharg(2)[1] matcharg({nr}) *matcharg()* Selects the...
131907 Gary Johnson
garyjohn@... Send Email
Jun 24, 2012
5:30 pm
... It works for me. Are you setting @/ within a function and expecting that setting to persist after the function returns? That won't work because functions...
131908 richard emberson
richard.emberson@... Send Email
Jun 25, 2012
12:53 am
Consider the highlight ... In a script, is it possible to test whether or not its been defined. ... it will produce an Error message or the highlight terms. ...
131909 AndyHancock
andymhancock@... Send Email
Jun 25, 2012
2:02 am
... You're right. I was handraulically trying to copy the bashrc statements into my posting. Foolish me. Humans stopped typing error free the moment...
131910 Bee
beeyawned@... Send Email
Jun 25, 2012
2:38 am
... Thank you, I now see from :help "/ 9. Last search pattern register "/ *quote_/* *quote/* ... "Note that the valued is restored when returning from a...
131911 Ben Fritz
fritzophrenic@... Send Email
Jun 25, 2012
2:39 am
... Maybe use :try ... :catch to try getting the highlight info if it exists, and catch the error if it does not. ... -- You received this message from the...
131912 Salman Halim
salmanhalim@... Send Email
Jun 25, 2012
2:46 am
... To elaborate, this should do the trick: function! HighlightDefined( highName ) try silent execute 'hi ' . a:highName return 1 catch return 0 endtry ...
131913 John Beckett
johnb.beckett@... Send Email
Jun 25, 2012
2:59 am
... Yes, use hlexists('name') for example: if !hlexists(&#39;MyHi&#39;) hi MyHi guifg=white guibg=black endif An example using it is at: ...
131914 Salman Halim
salmanhalim@... Send Email
Jun 25, 2012
3:14 am
... Clearly, I should've checked before writing that function of mine. *Blush* Salman -- You received this message from the "vim_use" maillist. Do not...
131915 stardiviner
numbchild@... Send Email
Jun 25, 2012
5:08 am
The default system Vim procmail syntax file match folder without including backslash and whitespace. I hope someone can fix it. (I do not know how to match a...
131916 Ben Fritz
fritzophrenic@... Send Email
Jun 25, 2012
5:21 am
... The annoying thing about running tests is they occasionally turn up bugs. I'll put it out sometime this week once I have a test run without bugs. -- You...
131917 Christian Brabandt
cblists@... Send Email
Jun 25, 2012
6:50 am
Hi stardiviner! ... Well, simply include it into [], e.g. [a-z \\] will match all lowercase word chars plus space and backslash. Note, that you have to escape...
131918 Joshua Dennis
joshmdennis@... Send Email
Jun 25, 2012
2:40 pm
... Yes, this works! Thank you. I never thought to go about it that way. -- You received this message from the "vim_use" maillist. Do not top-post! Type...
131919 richard emberson
richard.emberson@... Send Email
Jun 25, 2012
2:44 pm
Thanks. I had looked around for an "exists" method for highlights but missed it. Richard ... -- Quis custodiet ipsos custodes -- You received this message from...
131920 Daniel Choi
dhchoi@... Send Email
Jun 25, 2012
3:59 pm
When the cursor is positions, say, at column 39, in either normal or insert mode, I want to create a line below that and position the cursor at column 39 in...
Messages 131891 - 131920 of 137836   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help