... Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 16384 (LWP 20680)] 0x402cc81d in Perl_sv_setsv_flags () from...
34891
Erik Christiansen
erik@...
Dec 3, 2002 5:18 am
... Looks very useful. Have you considered a more general 'breaklinks39;? e.g. If the original source is in /usr/local/src, and the working "copy" is in ~, then...
34892
Piet Delport
pjd@...
Dec 3, 2002 5:27 am
... [...] ... Sometimes the abbreviated forms are more readable, IMHO. Examples: :abbrev, :exec, :hi, :e, and friends ... This one also depends... sometimes...
34893
Luc Hermitte
hermitte@...
Dec 3, 2002 6:24 am
... It depends. The rare plugins exposing functions to developpers often have a documentation aimed at developpers. Somehow they are API plugins. Other plugins...
34894
Jürgen Krämer
jkraemer@...
Dec 3, 2002 7:08 am
Hi, Brett Pershing Stahlman wrote: [quoting corrected] ... no, it's optional. Regards, Jürgen -- Jürgen Krämer...
34895
Mirko Gerdau
vim-mail@...
Dec 3, 2002 9:47 am
Does anybody know where to find vim sources for OS/390 Unix System Services (aka OMVS). The problem: USS uses EBCDIC but no ASCII codepages thanx Mirko ...
34896
Walter Briscoe
wbriscoe@...
Dec 3, 2002 11:46 am
This article describes copying vim -d screens to the Win32 clipboard. It depends on a program to configure the size of a "shell" window. It works with cmd.exe...
34897
Dan Sharp
dwsharp@...
Dec 3, 2002 1:50 pm
... Support is already in the current sources. Look at README_os390.txt for details, or do :he os390 for more current information. Dan Sharp ...
34898
Stefan Verhaegh
sjs.verhaegh@...
Dec 3, 2002 2:46 pm
dear vim users and developers, as a student of the faculty of Science and Technology Studies at the dutch University of Maastricht (www.unimaas.nl) I'm writing...
34899
Thomas Adam
thomas_adam16@...
Dec 3, 2002 2:55 pm
Hey Stefan, Sounds like a VERY interesting thesis. You can definitely count on my input, in any shape or form!! Kind Regards, Thomas Adam (19 years old) ... ...
34900
Stefan Verhaegh
sjs.verhaegh@...
Dec 3, 2002 3:39 pm
Dear Thomas, thanks for your FAST repons (which I guess is also one of the characteristics of the Vim mailinglist). Because I respect the privacy of the people...
34901
Jing Xue
misclists@...
Dec 3, 2002 4:39 pm
... From: "Antoine J. Mechelynck" <antoine.mechelynck@...> Date: Sun, 17 Nov 2002 10:21:37 +0100 To: <vim@...> Subject: Re: write permission ... ...
34902
Jeremy Brand, B.S.
jeremy@...
Dec 3, 2002 8:04 pm
... It might also be a configuration problem on your machine. My RPMs build just fine on RedHat 8 with gcc 3.2. I just re-tested them to make sure. However,...
34903
Steve Litt
slitt@...
Dec 3, 2002 8:39 pm
Hi all, I'm writing a simple script. Two consecutive lines each, mutually exclusively, contain either "create" or "destroy". I want to make sure the line...
34904
Tim Chase
gumnos@...
Dec 3, 2002 8:42 pm
... prompt, ... paste ... sounds like you're looking for ... right? -tim...
34905
Dave Roberts
dave.roberts@...
Dec 3, 2002 9:07 pm
You can use the 'normal39; command to swap two lines if necessary. Use '\<' and '\>' to make sure the words are not part of a longer word. ... This line contains...
34906
Soren Andersen
soren_andersen@...
Dec 3, 2002 11:15 pm
Hello, Sorry if this is a terribly basic Q. I've just installed some new plugins in $VIM/vimfiles/ftplugin/ (mail/mail_set.vim) and I wonder how to get help?...
34907
Hari Krishna Dara
hari_vim@...
Dec 4, 2002 2:21 am
I need to find all the spaces that are protected by a back-slash. A simple regular expression such as '\92;\@<= ' will not work because I may have something like...
34908
Oliver Fuchs
oliverfuchs1@...
Dec 4, 2002 5:02 am
... Hi, ... [...] FILETYPE PLUGINS *add-filetype-plugin* *ftplugins* The Vim distribution comes with a set of plugins for different filetypes that you can...
34909
Thomas S. Urban
scottu@...
Dec 4, 2002 5:41 am
... How about this: /\(^\|[^\92;]\)\(92;\92;\92;)*\\ /e which, strangely, seems to work on one version of vim I have (6.1.254) but not on another (6.1.263). Replacing...
34910
BStrohhaecker@...
Dec 4, 2002 7:14 am
Von: Hari Krishna Dara [mailto:hari_vim@...] Gesendet: Mittwoch, 4. Dezember 2002 03:21 ... How about using a simple '[^\\]\\ '? If needed you can add...
34911
Sean Richards
sean64@...
Dec 4, 2002 8:18 am
Hi, Trying to get <cword> to work on the command line. I want to write a vim function to search and replace across all open buffers. I started out playing with...
34912
Jürgen Krämer
jkraemer@...
Dec 4, 2002 8:43 am
Hi, ... (untested) Regards, Jürgen -- Jürgen Krämer Softwareentwicklung Habel GmbH...
34913
Sean Richards
sean64@...
Dec 4, 2002 9:22 am
... Hi Jurgen, Now tested and works perfectly :) Thankyou ! Cheers, Sean...
34914
Charles E. Campbell
cec@...
Dec 4, 2002 2:23 pm
... /\\92;@<!\(\\\\\)*\92; / Translated: Any even number of backslashes, including zero, followed by a backslash then a space, matches. Matches ... Doesn't Match ...
34915
Charles E. Campbell
cec@...
Dec 4, 2002 2:27 pm
... ex. map \F <right> 20\F The problem is: you can't get ahold of the repeat number. Instead the mapping will be repeated as in this example, 20 times. ... ...
34916
Steve Litt
slitt@...
Dec 4, 2002 3:10 pm
Thanks to all of you who responded and offered the :put command and the ... Thank you so much Steve -- Steve Litt Author: * Universal Troubleshooting Process...
34917
Benji Fisher
benji@...
Dec 4, 2002 3:10 pm
... Mappings cannot handle counts, nor registers, but user-defined commands can. ... /Range handling /Special cases HTH --Benj Fisher...
34918
Jürgen Krämer
jkraemer@...
Dec 4, 2002 3:21 pm
Hi, ... another problem: the count is only applied to the first complete command inside the right hand side of the mapping, e.g. map \F <right><right> 20\F ...
34919
Michael Naumann
mnaumann@...
Dec 4, 2002 3:41 pm
... Even worse map \F 3<right> 20\F would move the cursor by 203 Chacacters, not 60. - Michael...