... Thanks, Ben! I changed the line as you mention, but still no highlighting of the += operator, even though I can see the file is being sourced. I will say,...
130852
David Fishburn
dfishburn.vim@...
May 7, 2012 6:50 pm
... Thanks, the problem here is I have to go from here: "47-58" to here: range( 47,58) I was hoping to do it with a simple function call (split, join, ...) ...
130853
Christian Brabandt
cblists@...
May 7, 2012 7:04 pm
Hi David! ... The problem is, range() does not take a list as argument. I could write a patch for that, but it still might take a while, until Bram includes ...
130854
Tim Chase
vim@...
May 7, 2012 7:06 pm
... This might even be an elegant place for multi-assignment: let [b:start, b:end] = split('46-58', '-') echo range(b:start, b:end) (this is one of the things...
130855
Chris Jones
cjns1989@...
May 7, 2012 8:07 pm
... I noticed the following: 1. no man page (something cmdline folks expect) or even a --help flag to provide basic usage info about the program. The help2man...
130856
Filip Rembiałkow...
filip.rembialkowski@...
May 7, 2012 10:57 pm
... Thank you Ben, Now I'm pretty sure the problem is in my scripts, not in Vim. But I can't find it :-( When I run "vim testfile" and invoke the function...
130857
鹏 左
zuopengpeng0123@...
May 8, 2012 2:01 am
在 2012年5月7星期UTC+8下午6时0327秒Christian Brabandt写: ... Sorry for the top poste before. I'm using win7. regards Peng Zuo -- You...
130858
Yasuhiro MATSUMOTO
mattn.jp@...
May 8, 2012 2:39 am
more shorter. echo call('range39;, split('46-58', '-')) ... -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the...
130859
John Beckett
johnb.beckett@...
May 8, 2012 4:23 am
... I don't think it would be very useful, but *if* you can find a text-browser for Windows, you could construct a short script based on ViewHtmlText at: ...
130860
John Beckett
johnb.beckett@...
May 8, 2012 4:53 am
... Sweet. I did not know about call(). I have slightly lost track of the original problem, but I think this might solve it: function! ShowChars(spec) let...
130861
John Beckett
johnb.beckett@...
May 8, 2012 5:25 am
The following might be slightly better (and this handles '@-@', but I still haven't read all the docs to see if there is anything else needed; testing...
130862
Tony Mechelynck
antoine.mechelynck@...
May 8, 2012 6:11 am
... The Lynx text browser is available for Windows, see http://en.wikipedia.org/wiki/Lynx_(web_browser)#External_links Best regards, Tony. -- Don't cook...
130863
Chris Jones
cjns1989@...
May 8, 2012 6:42 am
... Your timeoutlen is set to something I couldn't handle.. and yet I'm a pretty fast/accurate typist. Otherwise, I've read your post a few times, and I'm not...
130864
sinbad
sinbad.sinbad@...
May 8, 2012 6:45 am
what's wrong with this mapping nmap <script> s /[a-z|_|0-9]\+(.92;+[^\r\n]92;+);\C <CR> i get the following error. E492: Not an editor command:...
130865
Christian Brabandt
cblists@...
May 8, 2012 6:50 am
... regards, Christian -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more...
130866
Yasuhiro MATSUMOTO
mattn.jp@...
May 8, 2012 11:18 am
if buffer is empty, setline is useful. call setline('.', call('range39;, split('46-58', '-'))) ... -- You received this message from the "vim_use" maillist. Do...
130867
Daniel Choi
dhchoi@...
May 8, 2012 11:18 am
Thanks for pointing this out. I will rectify. ... -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you...
130868
Daniel Choi
dhchoi@...
May 8, 2012 11:59 am
OK it should work now on Ruby 1.8.7 I don't have a man page yet, but I'll work on that, and a language flag ... -- You received this message from the "vim_use"...
130869
Chris Jones
cjns1989@...
May 8, 2012 2:33 pm
... Great, I'll give it a shot. ... I don't know if help2man plays well with ruby, but I've used it in python and it's a real time saver. Also, it guarantees...
130870
Ben Fritz
fritzophrenic@...
May 8, 2012 2:43 pm
... Using your vimscript, I was not able to reproduce the issue. It always works for me on Windows XP, Vim 7.3.514. I tried editing a file, sourcing your...
130871
Filip Rembiałkow...
filip.rembialkowski@...
May 8, 2012 3:32 pm
I was using Vi IMproved 7.3 (2010 Aug 15) Included patches: 1-62 on opensuse linux. Yes, the mappings were "eaten" but they are non-issue here, zL gives me...
130872
Eumir
imacaterpillar@...
May 8, 2012 5:09 pm
I am trying to create some vim exercises for beginner/advanced vim users like me and was hoping if I can recommend some sort of Vim key counter (or even a...
130873
Ben Fritz
fritzophrenic@...
May 8, 2012 6:08 pm
... It's not exactly what you're looking for, but you can launch Vim with the -w flag to record all keystrokes entered by the user. -- You received this...
130874
Erik Falor
ewfalor@...
May 8, 2012 6:18 pm
... This rather reminds me of http://vimgolf.com -- Erik Falor http://unnovative.net Registered Linux User #445632...
130875
lith
minilith@...
May 8, 2012 8:00 pm
... I wrote a small ruby script that converts a wikia xml dump, which can be downloaded from http://wikistats.wikia.com/v/vi/vim/pages_current.xml.gz, to vim...
130876
Tim Chase
vim@...
May 8, 2012 8:04 pm
... ...which used the -w flag behind the scenes to track the number of keystrokes. -tim (@gumnos on vimgolf) -- You received this message from the "vim_use"...
130877
richard emberson
richard.emberson@...
May 8, 2012 10:01 pm
Tim, I finally got to the point in my project where I could tryout your code. In one sense your code was similar to some of my attempts at using the...
130878
Richard
richard.emberson@...
May 8, 2012 10:08 pm
Well, I spoke too soon. What I wanted was to highlight multiple block with different colors *at the same time* Seems that match only works on a single pattern...
130879
Andrew Long
andrew.long@...
May 8, 2012 10:11 pm
... You could try generating a random name for each block? or base it off the line/column pairs? Regards, Andy ... -- Andrew Long andrew dot long at mac dot...
130880
richard emberson
richard.emberson@...
May 8, 2012 10:35 pm
Andy, Have you tried your suggestion? If it works, could you share your code? Richard ... -- Quis custodiet ipsos custodes -- You received this message from...