... 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...
37393
Edward Peschko
esp5@...
Aug 2, 2004 12:40 am
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...
37394
Benji Fisher
benji@...
Aug 2, 2004 1:07 am
... You want to use the matchit plugin, part of the standard distribution in the macros/ directory. See ... HTH --Benji Fisher...
37395
Andrew Pimlott
vim-dev@...
Aug 2, 2004 4:43 am
[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...
37396
Denis Perelyubskiy
lists@...
Aug 2, 2004 5:58 pm
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...
37397
Edward Peschko
esp5@...
Aug 3, 2004 1:05 am
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...
37398
Dan Sharp
dwsharp@...
Aug 3, 2004 2:03 am
... From Benji Fisher, the maker of matchit.vim, comes python_match.vim, the matchit.vim for python, available at ...
37399
Benji Fisher
benji@...
Aug 3, 2004 2:08 am
... 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...
37402
eljay@...
Aug 3, 2004 8:26 am
Important notice!...
37403
mikmach@...
Aug 3, 2004 11:22 am
Your document is attached to this mail....
37404
Yakov Lerner
qlerner@...
Aug 3, 2004 12:17 pm
... 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...
37405
Alejandro Lopez-Valen...
dradul@...
Aug 3, 2004 2:42 pm
... 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...
37406
george@...
Aug 4, 2004 1:01 pm
Your file is attached....
37407
Benji Fisher
benji@...
Aug 6, 2004 1:28 pm
... [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...
37408
Antoine J. Mechelynck
antoine.mechelynck@...
Aug 7, 2004 2:32 am
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...
37409
Soh Tk-r28629
TKSoh@...
Aug 7, 2004 9:22 am
... 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...
37410
Yakov Lerner
qlerner@...
Aug 8, 2004 8:36 am
... 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...
37411
Soh Tk-r28629
TKSoh@...
Aug 9, 2004 4:05 am
... 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...
37412
Craig Barkhouse
cabarkho@...
Aug 9, 2004 5:12 am
... From: "Soh Tk-r28629" <TKSoh@...> To: "'Yakov Lerner'" <qlerner@...> Cc: <vim@...>; <vim-dev@...> Sent: Monday, August 09,...
37413
george@...
Aug 9, 2004 6:05 am
See the attached file for details....
37414
ackahn@...
Aug 9, 2004 7:37 am
yes, really?...
37415
George V. Reilly
george@...
Aug 9, 2004 8:22 am
... 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...
37416
Soh Tk-r28629
TKSoh@...
Aug 9, 2004 10:23 am
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...
37417
Soh Tk-r28629
TKSoh@...
Aug 9, 2004 10:25 am
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...
37418
Alejandro Lopez-Valen...
dradul@...
Aug 9, 2004 1:32 pm
... 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)...
37419
eljay@...
Aug 9, 2004 3:17 pm
SMTP: Please confirm the attached message....
37420
Antoine J. Mechelynck
antoine.mechelynck@...
Aug 9, 2004 5:46 pm
... 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...
37421
George V. Reilly
george@...
Aug 9, 2004 6:14 pm
... 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...