Search the web
Sign In
New User? Sign Up
vim · Vim (Vi IMproved) text editor users list
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 35519 - 35548 of 94837   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
35519
... Hi Antoine, sorry for the delay! The buffers in question are wiped out afterwards, thus they didn't show up in the buffer listing. (To create the buffer ...
Klaus Bosau
kbosau@...
Send Email
Jan 1, 2003
8:54 am
35520
Hi, I'd like to find out how often a certain character shows up in a line. To achieve this I tried fun! s:N() .s/x/&/ge return substitute(v:statusmsg,...
Klaus Bosau
kbosau@...
Send Email
Jan 1, 2003
8:54 am
35521
... Hi Antoine, the sequence in question showed up where (normal mode) keystrokes normally are shown. Are there any commands which could have caused this? ...
Klaus Bosau
kbosau@...
Send Email
Jan 1, 2003
8:55 am
35522
... Yes. I have to ensure however that the size of the moved material is about equal to the size of the initially moved plugin. - How large is the amount of...
Klaus Bosau
kbosau@...
Send Email
Jan 1, 2003
8:56 am
35523
... [...] ... I meant you to type :verbose setlocal modified? yourself as a Vim command, not enter it into a script; and if you put it before the redir...
Antoine J. Mechelynck
antoine.mechelynck@...
Send Email
Jan 1, 2003
9:23 am
35524
... I'm still thinking of something nasty, stack overflow, buffer ovrerun, using an uninitialized pointer, etc. That bytestring looked to me like an ...
Antoine J. Mechelynck
antoine.mechelynck@...
Send Email
Jan 1, 2003
9:39 am
35525
Benji Fisher <benji@...> wrote: [...] ... If your file is in UTF-8, then obviously it must obey UTF-8 encoding rules; and these rules say (among...
Antoine J. Mechelynck
antoine.mechelynck@...
Send Email
Jan 1, 2003
10:24 am
35526
... [...] Couldn't it just be the f or ' suboption in the 'viminfo' option? (see :help 'viminfo') If f is absent or nonzero, then marks, *including cursor ...
Antoine J. Mechelynck
antoine.mechelynck@...
Send Email
Jan 1, 2003
10:52 am
35527
... you might set it yourself, e.g. function!... let v:statusmsg = "" .s/ etc. HTH, Tony....
Antoine J. Mechelynck
antoine.mechelynck@...
Send Email
Jan 1, 2003
11:36 am
35528
... "ga" shows the ascii value, but it doesn't handle an illegal byte differently, thus a single "ab" byte will show "00ab" and the two-byte UTF-8 sequence for...
Bram Moolenaar
Bram@...
Send Email
Jan 1, 2003
12:37 pm
35529
... Since your answer is "yes," I am coming around to your point of view. I do not use all that many plugins. I do use the LaTeX suite, ...
Benji Fisher
benji@...
Send Email
Jan 1, 2003
1:40 pm
35530
... Thanks for the details. That's already more than I think I need to know (for now) so I am not going to follow the link. Perhaps my :put command should...
Benji Fisher
benji@...
Send Email
Jan 1, 2003
1:59 pm
35531
... Thanks. That works. ... [patch snipped] ... « <ab> ... 0 ... 1 ... 1 echo foo == iconv(bar, "latin1", &enc) 1 so it looks pretty good to me. The second...
Benji Fisher
benji@...
Send Email
Jan 1, 2003
2:38 pm
35532
... e +/Count $VIMRUNTIME/macros/matchit.vim HTH --Benj Fisher...
Benji Fisher
benji@...
Send Email
Jan 1, 2003
2:41 pm
35533
Benji Fisher <benji@...> wrote: [...] ... That would, if done correctly, avoid putting invalid byte-sequences into UTF-8 files. ... I saw that...
Antoine J. Mechelynck
antoine.mechelynck@...
Send Email
Jan 1, 2003
2:58 pm
35534
Benji Fisher <benji@...> wrote: [...] ... Personally I am partisan of leaving the existing \x unchanged on compatibility grounds. Giving a new...
Antoine J. Mechelynck
antoine.mechelynck@...
Send Email
Jan 1, 2003
3:10 pm
35535
... Thanks for testing. It's a matter of taste whether foo =~ bar should result in TRUE of FALSE. Let's just leave it as it is until someone has a good...
Bram Moolenaar
Bram@...
Send Email
Jan 1, 2003
4:17 pm
35536
... No, I have only tried it with utf-8 and latin1. What other encodings should I try? ... Thanks! --Benji Fisher...
Benji Fisher
benji@...
Send Email
Jan 1, 2003
4:32 pm
35537
... [...] ... As many as possible, of course; but this is not really an answer. Maybe you could start, if you have them, with Central-European and Turkish...
Antoine J. Mechelynck
antoine.mechelynck@...
Send Email
Jan 1, 2003
5:05 pm
35538 Mikolaj Machowski
mikmach@...
Send Email
Jan 1, 2003
6:50 pm
35539
If I type "yy" I yank one line. If I type "1y" I get no lines. If I type "2y" I yank three lines. So how does one yank exactly 2 lines? -- John Culleton Able...
John Culleton
john@...
Send Email
Jan 1, 2003
7:54 pm
35540
... In normal mode, if I type yy I yank one line, if I type 2y I am still in operator-pending mode (waiting for entry of an object or motion), and if I type...
Antoine J. Mechelynck
antoine.mechelynck@...
Send Email
Jan 1, 2003
8:06 pm
35541
... Sorry, maybe I misunderstood. I thought you wanted me to trace what happens after the script referred to is done. ... Of course you're right. Must have...
Klaus Bosau
kbosau@...
Send Email
Jan 1, 2003
8:53 pm
35542
... 152kB and 34 kB? You're at the edge... ;-) ... W98 (here) ... About 160 kB. ... I did a somehow radical experiment with 39179 Dummies (including me) resp....
Klaus Bosau
kbosau@...
Send Email
Jan 1, 2003
8:53 pm
35543
... Thanks a lot! I turned it in fun! s:N() let &report=0 .s/x/&/ge return substitute(v:statusmsg, '^\(.\).*', '\1', '') endfun but this seems to work properly...
Klaus Bosau
kbosau@...
Send Email
Jan 1, 2003
8:54 pm
35544
... Hi, and thanks! I already tried this, but obviously it sometimes isn't set by :s. I don't know why... Thanks, Klaus...
Klaus Bosau
kbosau@...
Send Email
Jan 1, 2003
8:55 pm
35545
I use "yj". Steve ... -- Steven Tryon stryon@... ICQ 102798975...
Steven Tryon
stryon@...
Send Email
Jan 1, 2003
9:47 pm
35546
... 2yy, or am I missing something? :) Andreas -- Andreas Schlapbach schlpbch@... http://www.iam.unibe.ch/~schlpbch...
Andreas Schlapbach
schlpbch@...
Send Email
Jan 1, 2003
11:04 pm
35547
Hi all, I have uploaded a Vim plugin (mru.vim) to the Vim online website. You can download the plugin from: http://vim.sourceforge.net/script.php?script_id=521...
Yegappan Lakshmanan
yegappan@...
Send Email
Jan 2, 2003
4:08 am
35548
Hi all, I have 2 problems. 1. I have 2 files foo and bar with a word on each line. foo -> 5000 words bar -> 2300 words. Now I want to *find all the words in...
Payal Rathod
payal@...
Send Email
Jan 2, 2003
4:09 am
Messages 35519 - 35548 of 94837   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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