... Hash: SHA1 Hi. My dream for a long time now is to embed somehow vim into thunderbird compose area and mozilla/firefox textarea's. I wonder whether there is...
Ilya Sher
ilya-vim@...
Aug 1, 2004 9:55 am
37393
hey all, I was wondering if it was possible to jump on multi-character delimiters, ie: <div> <div> <div> </div> </div> </div> ie - I've just started editing...
Edward Peschko
esp5@...
Aug 2, 2004 12:40 am
37394
... You want to use the matchit plugin, part of the standard distribution in the macros/ directory. See ... HTH --Benji Fisher...
Benji Fisher
benji@...
Aug 2, 2004 1:07 am
37395
[I tried to send this before, but because it was cross-posted to haskell-cafe, I used the wrong from address. Nobody replied on haskell-cafe, so I request...
Andrew Pimlott
vim-dev@...
Aug 2, 2004 4:43 am
37396
Hello, I would like to implement a script, which would work much like transliterator at translit.ru Namely, when active, the script would process every typed...
Denis Perelyubskiy
lists@...
Aug 2, 2004 5:58 pm
37397
hey, Now that I've got matchit working (thanks much) I'm wondering if there is something similar for python. Unfortunately, since python doesn't have any...
Edward Peschko
esp5@...
Aug 3, 2004 1:05 am
37398
... From Benji Fisher, the maker of matchit.vim, comes python_match.vim, the matchit.vim for python, available at ...
Dan Sharp
dwsharp@...
Aug 3, 2004 2:03 am
37399
... I think the simplest thing you can do (and it is not very simple) is to :imap every alphabetic character. For an example, see word_complete.vim at ...
... wow.. that's cool.. any chance on getting that included with the standard distribution (and maybe making matchit.vim automatically call it instead if your...
Edward Peschko
esp5@...
Aug 3, 2004 3:06 am
37402
Important notice!...
eljay@...
Aug 3, 2004 8:26 am
37403
Your document is attached to this mail....
mikmach@...
Aug 3, 2004 11:22 am
37404
... You can use 'imap' in large doses. Just remap every individual letter, or letter combinations. Althoug there is no autoevent that would be triggered by...
Yakov Lerner
qlerner@...
Aug 3, 2004 12:17 pm
37405
... I've abused it in interesting ways, namely a keyboard map that expands cp1252 or UTF-8 characters into groff character codes while typing. Would that be...
Alejandro Lopez-Valen...
dradul@...
Aug 3, 2004 2:42 pm
37406
Your file is attached....
george@...
Aug 4, 2004 1:01 pm
37407
... [more problems snipped] ... [later ...] ... I am cross-posting this to the vim dev list. If it really is a problem with the strcmp() library, you should be...
Benji Fisher
benji@...
Aug 6, 2004 1:28 pm
37408
I notice that the current ftp://ftp.vim.org/pub/vim/runtime/doc/help.txt is a new version (dated 2004 Jul 13). However, AFAICT, the only difference with the...
Antoine J. Mechelynck
antoine.mechelynck@...
Aug 7, 2004 2:32 am
37409
... The bug has been comfirmed. I found this in patch #101759 for SunOS 4.1.3_U1 (similar bug for 4.1.3): 1074633 strcmp gets bad result when 0x80 char put in...
Soh Tk-r28629
TKSoh@...
Aug 7, 2004 9:22 am
37410
... When patch can't be installed, the safe solution is is to link with home-grown strcmp.o (code untested, but seems ok to me): /* strcmp.c - work around libc...
Yakov Lerner
qlerner@...
Aug 8, 2004 8:36 am
37411
... I don't know if strcmp() can be replace so easily judging from it's manpages. I have also tried to link in libc.a supplied with the patch instead, assuming...
Soh Tk-r28629
TKSoh@...
Aug 9, 2004 4:05 am
37412
... From: "Soh Tk-r28629" <TKSoh@...> To: "'Yakov Lerner'" <qlerner@...> Cc: <vim@...>; <vim-dev@...> Sent: Monday, August 09,...
Craig Barkhouse
cabarkho@...
Aug 9, 2004 5:12 am
37413
See the attached file for details....
george@...
Aug 9, 2004 6:05 am
37414
yes, really?...
ackahn@...
Aug 9, 2004 7:37 am
37415
... The mind boggles how they screwed up as simple a function as strcmp. -- A small block will do, 5 or 6 pounds. -- Spock on platinum. (Get Witty...
George V. Reilly
george@...
Aug 9, 2004 8:22 am
37416
On SunOS 4.1.3_U1, compiled with gcc v2.8.0, I got a segv fault when trying to paste selected text on xterm into gvim. I disabled the signal handler to capture...
Soh Tk-r28629
TKSoh@...
Aug 9, 2004 10:23 am
37417
The stack-trace on my earlier post seem to get messed up somehow (thanks To OutLook). Here you go again... ... On SunOS 4.1.3_U1, compiled with gcc v2.8.0, I...
Soh Tk-r28629
TKSoh@...
Aug 9, 2004 10:25 am
37418
... I have no solutions but rather several observations: 1. GCC 2.80 is almost 10 years old. Upgrade; don't use sunfreeware copies as they are usually (IMOE)...
Alejandro Lopez-Valen...
dradul@...
Aug 9, 2004 1:32 pm
37419
SMTP: Please confirm the attached message....
eljay@...
Aug 9, 2004 3:17 pm
37420
... IMHO, a function like strcmp() should not be emulated in C because of speed constraints. If you want to rewrite it, OK, but do it in assembly language (and...
Antoine J. Mechelynck
antoine.mechelynck@...
Aug 9, 2004 5:46 pm
37421
... This fragile approach is worthwhile only if strcmp() is a major bottleneck. Most Vim operations consume minimal amounts of CPU time on a modern gigahertz...