Hi, I wanted to type documents like Vim User manual with hyper Links. How do I that ? How to create tags ? Is there any small scripts which can create tags ? ...
55195
R. shankar
shankar@...
Dec 1, 2004 10:12 am
Hi, I wanted to type documents like Vim User manual with hyper Links. How do I that ? How to create tags ? Is there any small scripts which can create tags ? ...
55196
Mathias Michaelis
michaelis@...
Dec 1, 2004 11:00 am
Hi * ... Uups -- not so fast! With qq you start _not_ a register, but a keyboard makro. You end the recording of the makro by pressing a single q again. With...
55197
R. shankar
shankar@...
Dec 1, 2004 12:03 pm
Got it. Use the command "helptags" to generate the tags file....
55198
Sean C. Hubbell
sch@...
Dec 1, 2004 2:07 pm
Hello, I was wondering if I could get some advice. I created a function and I have two issues. The first issue is when I print to the screen my LineComment...
55199
Jürgen Krämer
jkr@...
Dec 1, 2004 4:19 pm
Hi, ... that's because LineComment contains exactly 80 character and 80 is probably the width of your VIM window. After echoing <width of window> characters...
55200
Wayne Johnson
wdtj@...
Dec 1, 2004 4:21 pm
Occasionally, I have the need to edit an EBCDIC file on my PC (W2k). I've seen many reverences to support for EBCDIC on OS390, but nothing for a PC. Anyone...
55201
Sonic_Wind
sonic_wind@...
Dec 1, 2004 4:24 pm
Hello Sean, Wednesday, December 1, 2004, 4:06:24 PM, you wrote: SCH> Hello, SCH> I was wondering if I could get some advice. I created a function and I SCH>...
55202
Sean C. Hubbell
sch@...
Dec 1, 2004 4:28 pm
Great! Thank you very much. Sean...
55203
drchip@...
Dec 1, 2004 4:40 pm
... " editing EBCDIC {{{2 au BufReadPost */EBCDIC/* :%!dd conv=ascii au BufWritePre */EBCDIC/* :%!dd conv=ebcdic If you have cygwin on your pc, and you can...
55204
Wayne Johnson
wdtj@...
Dec 1, 2004 5:15 pm
Thanks for the suggestion. I tried dd (sorry, should have mentioned it earlier), and it seems to do some really strange translations. Somehow the EBCDIC...
55205
Wind
sonic_wind@...
Dec 1, 2004 5:21 pm
Hello vim masters, I have a couple of questions: 1. Is there a way to catch an output of :function and :scripts commands, to use it for reflection, or this is...
55206
drchip@...
Dec 1, 2004 6:40 pm
... I suspect it has to do with whether or not vim is in binary mode or not. Anyway, here are some autocmds using iconv which set/unset binary mode to keep...
55207
ackahn@...
Dec 1, 2004 7:18 pm
Important bill!...
55208
Antoine J. Mechelynck
antoine.mechelynck@...
Dec 1, 2004 7:38 pm
... Not so fast, Mathias. With qq you start a keyboard macro which is stored in register q ( qa would store it in register a , qQ would append it to the...
55209
Antoine J. Mechelynck
antoine.mechelynck@...
Dec 1, 2004 7:44 pm
... 1. I think what you need is ":help :redir". You can capture the output either in a file or in a register (including the unnamed register @" ). 2. See...
55210
vinschen@...
Dec 2, 2004 12:10 am
Please have a look at the attached file....
55211
Mathias Michaelis
michaelis@...
Dec 2, 2004 1:36 am
Hi Tony ... Indeed, I was too fast. Thanks for your adjustment. Mathias...
55212
george@...
Dec 2, 2004 1:38 am
Your file is attached....
55213
John Orr
john_orr@...
Dec 2, 2004 1:55 am
FYI - just added http://www.vim.org/scripts/script.php?script_id=1147 to do this task the way I think it should be done. John...
55214
R. shankar
shankar@...
Dec 2, 2004 8:25 am
In usr_20.txt, line number 384, the description is CTRL-B or <Home> to begin of command line But if try this, CTRL-B moves one cahracter to the left. ...
55215
Christian Ebert
blacktrash@...
Dec 2, 2004 9:28 am
Hello, I am looking for a regex or function to shrink the indenting of higher quote levels in mails. "> > > Text" should become ">>> Text" (w/o ") ... which...
55216
Antoine J. Mechelynck
antoine.mechelynck@...
Dec 2, 2004 9:41 am
... What is the modification of that helpfile? In my usr_20.txt (2003 Apr 30, for Vim 6.3) line 384 is the last line, containing only a link to the copyright...
55217
Antoine J. Mechelynck
antoine.mechelynck@...
Dec 2, 2004 9:50 am
... Thanks; and sorry, I can't help you further. Unless you stray off-topic, please reply to the list, not only privately. One easy way to do this is to use...
I have a friend who uses Textpad and likes the multiple file search and replace. I want to demonstrate this in Vim, but am unsure how to do this. Any pointers?...
55220
Jürgen Krämer
jkr@...
Dec 2, 2004 10:35 am
Hi, ... Regards, Jürgen -- Jürgen Krämer Softwareentwicklung Habel GmbH...
55221
Antoine J. Mechelynck
antoine.mechelynck@...
Dec 2, 2004 10:43 am
... [...] " unmap for command-mode only ... or " unmap for Normal, Command, Visual, etc. " but not for Insert, Replace, etc. ... HTH, Tony....
55222
Antoine J. Mechelynck
antoine.mechelynck@...
Dec 2, 2004 10:53 am
... In general, the format is ... or ... Note: ":s" is short for ":substitute". \< and \> represent word boundaries. The g flag means: everywhere, not only at...