... " Write a binary file (no newline at end) of characters translated " from pairs of hex ASCII characters (no spaces) on current line. function!...
132055
Christian Brabandt
cblists@...
Jul 4, 2012 7:38 am
Hi Dotan! ... I only very seldomly post there, but I'll do it this time. I'll probably also add some kind of vertical scrollbar into my DynamicSigns plugin. ...
132056
Dotan Cohen
dotancohen@...
Jul 4, 2012 8:12 am
... Then the bounty will help! I'll take a look at the DynamicSigns plugin, the name sounds useful. ... Thank you, it looks like those are all the critical...
132057
Sepp Tannhuber
sepp.tannhuber@...
Jul 4, 2012 8:48 am
Hi Salman, thank you very much! I did it with your help. I added your key mappings ... to my ~/.vim/ftplugin/notes.vim and made a keyboard shortcut ... for my...
132058
William Fugh
viarmx86@...
Jul 4, 2012 2:24 pm
[...] ... Good one. that's what i need. Thank you so much! Put above in file writechars.vim. ... -- You received this message from the "vim_use" maillist. Do...
132059
Peng Yu
pengyu.ut@...
Jul 4, 2012 8:20 pm
Hi Charles, ... Here is what I see on my screen. Notice that the for-loop before ` is different from the for loop after. You don't see the same thing? Here is...
132060
Peng Yu
pengyu.ut@...
Jul 4, 2012 8:31 pm
... I didn't notice your reply. Thanks for sharing the link. -- Regards, Peng -- You received this message from the "vim_use" maillist. Do not top-post! Type...
132061
Ike Devolder
ike.devolder@...
Jul 4, 2012 9:22 pm
... the answer is below the video ? ... --Ike -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are...
132062
Roberto S.
rsimoni.job@...
Jul 4, 2012 11:18 pm
Hi, I'm configuring a variable called $CLASSPATH in order to have javacomplete plugin running well. I'm using a software called "maven" to build the project...
132063
Benjamin R. Haskell
vim@...
Jul 5, 2012 12:09 am
... Your command is needlessly complex. Wrapping the `mvn` command in backticks tells the shell to capture the output as a string. Wrapping the backticks in...
132064
Gerardo Marset
gammer1994@...
Jul 5, 2012 12:27 am
... Hmm... yes, I guess I could do it, but determining the appropriate number of spaces seems to get quite complicated. Vim seems to remove a single space if,...
132065
meino.cramer@...
Jul 5, 2012 1:59 am
Hi, (using vim v.:7.3.584 under Gentoo-Linux with most features set on) I tried things like ... but with no success... How can I reduce a bunch of empty lines...
132066
Tim Chase
vim@...
Jul 5, 2012 2:51 am
... For some reason (legacy?), Vim uses \n on the left side and \r on the right side, so you want something like ... optionally tweaking the "2" and the number...
132067
Chris Jones
cjns1989@...
Jul 5, 2012 4:11 am
... Ah.. good one.. baffled me for ages and always had something more urgent to do.. never got a chance or remembered to look into it.. and kicked myself later...
132068
Martin Lundberg
martin.lundberg@...
Jul 5, 2012 7:52 am
I read http://dailyvim.blogspot.se/2008/02/golf.html and in it they come to the conclusion that you don't have to be inside quotes when you do ci" because it...
132069
Tim Chase
vim@...
Jul 5, 2012 10:50 am
... I think it's a bug-feature. It may be a bug, but I exoloit it regularly, and occasionally wished that the counterparts such as ci( worked the same way. ...
132070
Tim Chase
vim@...
Jul 5, 2012 10:53 am
... It might be slightly more efficient, as replacing the "2" case with \r\r is a NOOP. As for blank-ish lines (containing just whitespace), it might become ...
132071
Nick Shyrokovskiy
nshyrokovskiy@...
Jul 5, 2012 11:44 am
Hi everyone. Here is my problem. 1. When the cursor is over non-highlighted letter the bg=w and fg=b( inverted relative to when the cursor in not over this...
132072
Gautam Kotian (Googie)
gthm159@...
Jul 5, 2012 2:05 pm
... I added this to my .vimrc as: command RemoveMultipleBlankLines %s/^\(92;s*\n\)92;+/\r Now ":RemoveMultipleBlankLines" works like it should except when my file ...
132073
Ben Fritz
fritzophrenic@...
Jul 5, 2012 3:12 pm
... This replacement works for me: %s/^\_s92;+\n/\r I'm not actually sure why your version doesn't work, but I see the same behavior. -- You received this...
132074
Tim Chase
vim@...
Jul 5, 2012 5:16 pm
... With the (what I'd consider beneficial) side-effect of also removing trailing whitespace from lines. -tim -- You received this message from the "vim_use"...
132075
Tony Mechelynck
antoine.mechelynck@...
Jul 5, 2012 5:56 pm
... In addition to all that has already been said, maybe (untested) ... would work too? (replacing any number of line breaks, as many as possible, between a...
132076
Tony Mechelynck
antoine.mechelynck@...
Jul 5, 2012 6:03 pm
... With i( Vim knows that the ( has to be before the cursor and ) after it. With i" there is no such criterion, especially in languages where line breaks are...
132077
Tim Chase
vim@...
Jul 5, 2012 6:07 pm
... the only problem is that ci" doesn't work on multi-line strings, e.g. this Python: foo = """ my cursor --> X <-- is here between the arrows """ And I'd...
132078
Tony Mechelynck
antoine.mechelynck@...
Jul 5, 2012 6:18 pm
... I checked (unlike for my preceding post), and sure enough, it is documented (under :help a" ): "Only works within one line". Best regards, Tony. -- If...
132079
Tony Mechelynck
antoine.mechelynck@...
Jul 5, 2012 6:35 pm
... What do you mean, bg=w fg=b ? I don't know about them. Try to write out your colours in full. If you define your match highlight with ctermbg=7 ctermfg=0...
132080
andy richer
andy.richer@...
Jul 6, 2012 12:59 am
Hi, In file A (using gvim version 7.0.237): ABCDEFG I highlight ABCDEFG and paste to file B (using gvim version 7.1) and get: ^@latin1^@ABCDEFG But if I paste...
132081
Nick Shyrokovskiy
nshyrokovskiy@...
Jul 6, 2012 4:26 am
... 'w' and 'b' are just some colors, white and black respectively just to introduce terms.(not terminals )) ... If it realy matters I'm using wombat256...
132082
Gautam Kotian (Googie)
gthm159@...
Jul 6, 2012 5:30 am
... I'd consider that beneficial as well, except that it doesn't remove the trailing whitespace in my case. I still have to use %s/\s\+$// to remove trailing...
132083
Martin Lundberg
martin.lundberg@...
Jul 6, 2012 6:50 am
Ok, then I know the behavior probably won't change in the near future, thanks for the answers! -- You received this message from the "vim_use" maillist. Do not...