... [...] 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@...
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@...
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@...
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@...
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@...
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@...
Jun 23, 2012 8:35 pm
You can change PATH in vim (as you can change any env var): let $PATH='/no-such/dir39; and then try :!echo 'hello world' your shell will no longer be found. Why...
131898
Tarlika Elisabeth Sch...
vim@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
Jun 25, 2012 2:59 am
... Yes, use hlexists('name') for example: if !hlexists(39;MyHi39;) hi MyHi guifg=white guibg=black endif An example using it is at: ...
131914
Salman Halim
salmanhalim@...
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@...
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@...
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@...
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@...
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@...
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@...
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...