Re: php online help in windowsXP

2006-10-04 Thread Vigil
You should be able to do the same type of thing with firefox, eg firefox_doc.bat: c:\mozilla\firefox.exe $1 Maybe you can even get links for MSWin. On Tue, 3 Oct 2006, Vu The Cuong wrote: So I have set keywordprg=/home/marcel/php_doc and php_doc looks like: ### #!/usr/bin/bash links http

Re: How to directly enter visual mode from insert mode ?

2006-10-04 Thread Ivan Vecerina
"Ivan Vecerina" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] : This is a problem I am occasionally stumbling on: : as I am done typing some new next in insert mode, I want : to highlight and erase some text ahead of the insert point. I'm adding i_Ctrl-O to my list of "must use" c

Re: toggling keymap

2006-10-04 Thread Jürgen Krämer
Hi, Sven Brueggemann schrieb: > > where do I find CTRL-^ on a German keyboard? I know that I can > map it, but I'd like to see if the standard keystroke fits my > needs before changing it. on my keyboard and with Windows XP it's CTRL-6. Regards, Jürgen -- Sometimes I think the surest sign th

Copy between windows

2006-10-04 Thread tnas
Hello folks, I'm a begginer in the use of the vi, and I have a bit question: How can I copy a text between differents windows ? Thanks in advance. -- Thiago Nascimento #!/usr/bin/perl $_="tMM naaCt Feocmama_itpUilucoGa";$_.=$1,print $2 while s/(..)(.)//;print substr$_,1,1;

Re: Copy between windows

2006-10-04 Thread Jostein Berntsen
On 04.10.06,09:32, tnas wrote: > Hello folks, > > I'm a begginer in the use of the vi, and I have a bit question: How can > I copy a text between differents windows ? > > Thanks in advance. > http://www.oualline.com/vim-cook.html#copy_block http://vim.sourceforge.net/tips/tip.php?tip_id=312

Re: Copy between windows

2006-10-04 Thread Tim Chase
I'm a begginer in the use of the vi, and I have a bit question: How can I copy a text between differents windows ? You'll want to specify the "*" (or "+") register in your yank/deletes, such as "*yy to yank the current line into the system clipboard, or "*dap to cut the cu

Stack trace - omni completion

2006-10-04 Thread David Fishburn
Vim 7.0 patches 1-106 WinXP SP2 In an attempt to debug one of my scripts, I added some debug statements in my VimL. When I did that, Vim will crash and produce the stack trace listed below. I can reproduce this every time, and I know the person who reported the problem (with my script) also get

Re: Copy between windows

2006-10-04 Thread A.J.Mechelynck
tnas wrote: Hello folks, I'm a begginer in the use of the vi, and I have a bit question: How can I copy a text between differents windows ? Thanks in advance. Yank it in one and put it in the other: e.g., 5yy to yank five lines, Ctrl-W w to switch to the next (split) window, move the curs

Test and some help

2006-10-04 Thread Billy Patton
Everything bounced back yesterday, my first day of signup. What I was trying to ask When a file changes, external to gvim/vim, I have it where it will tell me it has changed, but I would like to to tequest for it to be reloaded. This works on gvim, but not on vim.

RE: Test and some help

2006-10-04 Thread Billy Patton
Got that problem solved. I was sending html from word > -Original Message- > From: Billy Patton [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 04, 2006 9:37 AM > To: vim@vim.org > Subject: Test and some help > > Everything bounced back yesterday, my first day of signup. > > What

Key remapping doesn't work

2006-10-04 Thread VetteVert
I'm not sure what my problem is, so I will try to give all the details that could be relavant. I'm using vim 6.3 on a solaris box. I am connecting through putty (ssh) from a wintel box with a 104+ keyboard (US). Scripts like supertab don't work, and when I try to remap tab manually, it doesn't

Re: Test and some help

2006-10-04 Thread A.J.Mechelynck
Billy Patton wrote: Everything bounced back yesterday, my first day of signup. What I was trying to ask When a file changes, external to gvim/vim, I have it where it will tell me it has changed, but I would like to to tequest for it to be reloaded. This works on gvim, but not on vim.

Can non-whitespace chars be used as separators in thesaurus file?

2006-10-04 Thread Dennis Craven
Hello list, Although ":h tsr" says that any non-keyword characters will work and also suggests that "white space is preferred", I thought I'd ask here anyways. Basically, I'd like to use another character (comma only?) as a word separator in my thesaurus file so that I can include phrases in the

Font rendering on Mac

2006-10-04 Thread David Goodlad
Hi all I've been using the new 'Consolas' font from the Vista font pack for my vim editing on my Mac for a month or so without problems. This font looks amazing, but _only_ when anti-aliased, otherwise it looks like a mess. The other day, I setup a second mac here, and was trying to get it to r

Gvim closing unexpectedly

2006-10-04 Thread Greg Dunn
I recently grabbed an updated gvim binary (7.0 with patches 1-110) from the cream sf site and now gvim closes without warning whenever I try to open a .vim script. It seems to have something to do with syntax highlighting: $ gvim -u NONE -U NONE :filetype on :e foo.vim :redir > vim.txt :se verb

Re: Font rendering on Mac

2006-10-04 Thread Robert Hicks
David Goodlad wrote: Hi all I've been using the new 'Consolas' font from the Vista font pack for my vim editing on my Mac for a month or so without problems. This font looks amazing, but _only_ when anti-aliased, otherwise it looks like a mess. The other day, I setup a second mac here, and was

Re: Key remapping doesn't work

2006-10-04 Thread Yakov Lerner
On 10/4/06, VetteVert <[EMAIL PROTECTED]> wrote: I'm not sure what my problem is, so I will try to give all the details that could be relavant. I'm using vim 6.3 on a solaris box. I am connecting through putty (ssh) from a wintel box with a 104+ keyboard (US). Scripts like supertab don't work

Re: BUG? getchar(0) and getchar(1) do not detect

2006-10-04 Thread Bram Moolenaar
Peter Hodge wrote: > I am having trouble with getchar() detecting . If I use getchar(0) or > getchar(1), it will not pick up an keystroke. You can replicate this by > using the command: > > :sleep 3 | echo getchar(0) > > ... and pressing quickly before the getchar() function is > called.

Re: Stack trace - omni completion

2006-10-04 Thread Bram Moolenaar
David Fishburn wrote: > Vim 7.0 patches 1-106 > WinXP SP2 > > In an attempt to debug one of my scripts, I added some debug statements in > my VimL. When I did that, Vim will crash and produce the stack trace listed > below. I can reproduce this every time, and I know the person who reported >

Re: Forms highlighting

2006-10-04 Thread Mikolaj Machowski
Dnia środa, 4 października 2006 05:06, Hari Krishna Dara napisał: > > > > No. They are inserting some version of keycode: OA, OB, OC, OD. In gui > > everything works well. In menus enabled > > Doesn't that just mean your term is not properly setup? I tried it on > win32 console vim and it worked ju

problem mapping Ctrl-Space (?)

2006-10-04 Thread Chuck Tuffli
I found the tutorial on using cscope with vim and am having trouble with the split screen commands. The Ctrl-\ variants map correctly to their cscope equivalents but Ctrl-Space just advances the cursor one position and performs the command associated with the letter (i.e. instead of Ctrl-Space,s o

RE: Gvim closing unexpectedly

2006-10-04 Thread Steve Hall
From: "Greg Dunn", Wed, October 04, 2006 1:51 pm > > I recently grabbed an updated gvim binary (7.0 with patches 1-110) > from the cream sf site and now gvim closes without warning whenever > I try to open a .vim script. It seems to have something to do with > syntax highlighting: > > $ gvim -u

Re: Gvim closing unexpectedly

2006-10-04 Thread Greg Dunn
On 10/4/06, Steve Hall <[EMAIL PROTECTED]> wrote: From: "Greg Dunn", Wed, October 04, 2006 1:51 pm > > I recently grabbed an updated gvim binary (7.0 with patches 1-110) > from the cream sf site and now gvim closes without warning whenever > I try to open a .vim script. It seems to have somethin

Re: problem mapping Ctrl-Space (?)

2006-10-04 Thread A.J.Mechelynck
Chuck Tuffli wrote: I found the tutorial on using cscope with vim and am having trouble with the split screen commands. The Ctrl-\ variants map correctly to their cscope equivalents but Ctrl-Space just advances the cursor one position and performs the command associated with the letter (i.e. inst

Re: Forms highlighting

2006-10-04 Thread Hari Krishna Dara
On Wed, 4 Oct 2006 at 10:37pm, Mikolaj Machowski wrote: > Dnia ¶roda, 4 pa¼dziernika 2006 05:06, Hari Krishna Dara napisa³: > > > > > > No. They are inserting some version of keycode: OA, OB, OC, OD. In gui > > > everything works well. In menus enabled > > > > Doesn't that just mean your term is

Re: Gvim closing unexpectedly

2006-10-04 Thread Steve Hall
[cross-posting to connect threads] On Thu, 2006-10-05 at 10:04 +1000, Robbie Gates wrote: > Hi All, > > i was having problems with gvim hanging when i tried to edit my > vimrc. > > After a bit of sleuthing, i tracked it down to has("tcl") hanging > (called from syntax/vim.vim). It appears your p

Re: copy a word without moving cursor

2006-10-04 Thread Osho GG
On 10/2/06, Charles E Campbell Jr <[EMAIL PROTECTED]> wrote: Osho GG wrote: > I am already putting this segment in much larger map that does other > things on "a contents. However, the way I currently do it has a > disadvantage that the cursor moves and then it moves back and then the > screen f