Re: Administrator never hears the beep

2007-01-18 Thread Spencer Lu
Tim Chase wrote: I'm running Vim 6.4 on Windows 2000. When I'm using GVim as a normal user, I can hear the beeping noises (for example, if I'm on the last line and then press 'j'). However, when I'm logged in as Administrator, I never hear any beeping noises. I made a few changes to my _vim

Re: vim over slow serial line

2007-01-18 Thread A.J.Mechelynck
Yakov Lerner wrote: Over serial 9600 line, when I press Arrows shortly after ESC, I get A B inserted into text. How do I need to set timeoutlen and ttimeoutlen to fix this problem ? I tried defaults and I tried timeoutlen=1500 ttimeoutlen=50 that I use on the fast console vim, was not good for sl

Re: omnicompletion vs. old Ctrl-n

2007-01-18 Thread A.J.Mechelynck
Daniel Nogradi wrote: Hi list, I'm using vim 6.3 and was thinking about upgrading to 7.0 especially because of the new omni completion feature. But at the moment I'm not quite sure what I would gain as there is the old Ctrl-n key in insert mode which does code completion. So what does omni compl

Re: Vim taking a long time to save files

2007-01-18 Thread Cameron Simpson
On 18Jan2007 09:23, Tim Chase <[EMAIL PROTECTED]> wrote: | >It's running on the server, no network involved. Just a standard | >out-of-the box enterprise linux installation (ie installed from rpm) | | Other things one might want to investigate: | | - does it happen when you start with "vim -u

Re: Modifying the tag stack

2007-01-18 Thread Alpt
On Thu, Jan 18, 2007 at 12:21:07PM -0500, : ~> ~> Perhaps something along the lines of ~> ~> save current user position/buffer (see :help getpos()) ~> :exe "keepjumps ta ".expand("") ~> :return to saved user position buffer (but use keepjumps) (see :help ~> setpos()) In the end, I've used t

Re: omnicompletion vs. old Ctrl-n

2007-01-18 Thread Daniel Nogradi
> I'm using vim 6.3 and was thinking about upgrading to 7.0 especially > because of the new omni completion feature. But at the moment I'm not > quite sure what I would gain as there is the old Ctrl-n key in insert > mode which does code completion. So what does omni completion add that > Ctrl-n d

Re: Administrator never hears the beep

2007-01-18 Thread A.J.Mechelynck
Spencer Lu wrote: I'm running Vim 6.4 on Windows 2000. When I'm using GVim as a normal user, I can hear the beeping noises (for example, if I'm on the last line and then press 'j'). However, when I'm logged in as Administrator, I never hear any beeping noises. I made a few changes to my _vi

Re: omni complete for php is really slooow

2007-01-18 Thread Mikolaj Machowski
On czwartek 18 styczeń 2007, Mikolaj Machowski, vim@vim.org wrote: > >On my Sempron2200, 512MB RAM it may be not very fast but IMO is > > acceptable. Looks like something is wrong with your setup. Do you use > > tags files? > > You mean ctags? > Yes. I'm using it > Anyway thanks for your response.

Re: omnicompletion vs. old Ctrl-n

2007-01-18 Thread Mikolaj Machowski
On czwartek 18 styczeń 2007, vim@vim.org wrote: > Hi list, > > I'm using vim 6.3 and was thinking about upgrading to 7.0 especially > because of the new omni completion feature. But at the moment I'm not > quite sure what I would gain as there is the old Ctrl-n key in insert > mode which does code

Re: Keyboard mapping being changed during usage

2007-01-18 Thread Stefan Kell
Hello, On Thu, 18 Jan 2007, Vinicius Pinto wrote: I'm using Vim 7.0 on Windows XP and my keyboard mapping is set so brazilian portuguese (ABNT2). The problem is that sometimes when I'm using Vim, it changes the mapping to US, so, for example, when I type the "Ç" key, it prints a quote. If I clo

Re: install custom python module?

2007-01-18 Thread A.J.Mechelynck
Tom Whittock wrote: ... pyfile ctypes.py ... Hi Tony. Thanks for the reply, but ctypes is actually a binary module (dll file) which needs to be installed into the python module path directly - unless I miss my guess, pyfile will source a python script but will not load a dll module. yes, pyf

Re: Spam in "Tips" in Vim's website

2007-01-18 Thread Guido Van Hoecke
Hi, I think I'll follow the advices from Salman Halim and Kim Schulz and I'll subscribe to vim tips using the RSS feed and will report the number I have no problems to add the vim scripts rss feed to my firefox live bookmarks by clicking the orange icon in the address bar. But the tips fe

vim over slow serial line

2007-01-18 Thread Yakov Lerner
Over serial 9600 line, when I press Arrows shortly after ESC, I get A B inserted into text. How do I need to set timeoutlen and ttimeoutlen to fix this problem ? I tried defaults and I tried timeoutlen=1500 ttimeoutlen=50 that I use on the fast console vim, was not good for slow serial line. Than

Re: Modifying the tag stack

2007-01-18 Thread Charles E Campbell Jr
Alpt wrote: On Thu, Jan 18, 2007 at 08:15:37AM -0500, : ~> On Thu, Jan 18, 2007 at 01:58:40PM +0100, Alpt wrote: ~> > ~> > How is it possible to push something in the tag stack without jumping? ~> ~> Would mapping the combination of do what you want? No, because the user has to always use C

Re: Keyboard mapping being changed during usage

2007-01-18 Thread Paul Irofti
On Thu, Jan 18, 2007 at 02:31:21PM -0200, Vinicius Pinto wrote: > I'm using Vim 7.0 on Windows XP and my keyboard mapping is set so > brazilian portuguese (ABNT2). The problem is that sometimes when I'm > using Vim, it changes the mapping to US, so, for example, when I type > the "?" key, it prints

Re: Administrator never hears the beep

2007-01-18 Thread Tim Chase
I'm running Vim 6.4 on Windows 2000. When I'm using GVim as a normal user, I can hear the beeping noises (for example, if I'm on the last line and then press 'j'). However, when I'm logged in as Administrator, I never hear any beeping noises. I made a few changes to my _vimrc file, but the f

Keyboard mapping being changed during usage

2007-01-18 Thread Vinicius Pinto
I'm using Vim 7.0 on Windows XP and my keyboard mapping is set so brazilian portuguese (ABNT2). The problem is that sometimes when I'm using Vim, it changes the mapping to US, so, for example, when I type the "Ç" key, it prints a quote. If I close Vim and open again, it's back to the correct mappi

Re: install custom python module?

2007-01-18 Thread Tom Whittock
... pyfile ctypes.py ... Hi Tony. Thanks for the reply, but ctypes is actually a binary module (dll file) which needs to be installed into the python module path directly - unless I miss my guess, pyfile will source a python script but will not load a dll module. I replied to Aaron yesterday t

Re: install custom python module?

2007-01-18 Thread A.J.Mechelynck
Aaron Griffin wrote: On 1/17/07, Tom Whittock <[EMAIL PROTECTED]> wrote: I would like to install an external python module (ctypes) into vim +python, so I can use that modules functionality from my script, but am unsure as to how to do that. Is this a reasonable thing to want to do? Is it possib

Re: latin1 vs utf8

2007-01-18 Thread A.J.Mechelynck
DervishD wrote: Hi Tony :) * A.J.Mechelynck <[EMAIL PROTECTED]> dixit: [...] One thing I just noticed: shell scripts (which are text) get "application/x-shellscript" and no charset, at least on my system; IMHO that's a bug in the "file" program. I don't know if it is a bug or not,

Re: Vim taking a long time to save files

2007-01-18 Thread Tim Chase
It's running on the server, no network involved. Just a standard out-of-the box enterprise linux installation (ie installed from rpm) Other things one might want to investigate: - does it happen when you start with "vim -u NONE" (eliminate possible plugin/script problems) - is your hard-dr

Re: Tips which have spam contained in their comments/notes:

2007-01-18 Thread Charles E Campbell Jr
Yongwei Wu wrote: On 1/18/07, Charles E Campbell Jr <[EMAIL PROTECTED]> wrote: FYI -- this is a list of my tips that still have link spam added as comments/notes: I'm sure that they're not the only ones. It is really annoying. In the worst case, there are 12 spam notes in a tip! I needed

Re: Vim taking a long time to save files

2007-01-18 Thread Keith Waters
It's running on the server, no network involved. Just a standard out-of-the box enterprise linux installation (ie installed from rpm) Keith How are you using VIM? The binary is in the server? Or the shared libs are in the server...I dont know where exactly the problem can be. Some NFS or SS

Re: Modifying the tag stack

2007-01-18 Thread Alpt
On Thu, Jan 18, 2007 at 08:15:37AM -0500, : ~> On Thu, Jan 18, 2007 at 01:58:40PM +0100, Alpt wrote: ~> > ~> > How is it possible to push something in the tag stack without jumping? ~> ~> Would mapping the combination of do what you want? No, because the user has to always use C-T and C-] to ju

Re: Vim taking a long time to save files

2007-01-18 Thread Eduardo Otubo
How are you using VIM? The binary is in the server? Or the shared libs are in the server...I dont know where exactly the problem can be. Some NFS or SSH? Last year I had the same problems on the lab university, and the problem was the heavy traffic on the network (bad administration) and their ba

Vim taking a long time to save files

2007-01-18 Thread Keith Waters
Hi All. One of my new servers, running vim, is taking a very long time to save files of any size. (We're talking about 11 seconds). The server is not busy at all ( IO and CPU, I checked using vmstat) and there are no hard drive errors showing in syslog. I have no idea where to start looki

omnicompletion vs. old Ctrl-n

2007-01-18 Thread Daniel Nogradi
Hi list, I'm using vim 6.3 and was thinking about upgrading to 7.0 especially because of the new omni completion feature. But at the moment I'm not quite sure what I would gain as there is the old Ctrl-n key in insert mode which does code completion. So what does omni completion add that Ctrl-n d

Modifying the tag stack

2007-01-18 Thread Alpt
How is it possible to push something in the tag stack without jumping? I fear that a ugly hack is needed to accomplish this. Actually I'm interesting only in jumping back, since I use `:e file' to jump forward. Hack I: use a temporary tag file (very ugly) Hack II: temporary remap CTRL-T (uglier

Re: latin1 vs utf8

2007-01-18 Thread DervishD
Hi Yongwei :) * Yongwei Wu <[EMAIL PROTECTED]> dixit: > > * Yongwei Wu <[EMAIL PROTECTED]> dixit: > >> On 1/18/07, DervishD <[EMAIL PROTECTED]> wrote: > >> >> Did you set 'fileencodings' to an empty string? Otherwise this would > >> >> not work. > >> > > >> >Apart from fixing the above (

Re: latin1 vs utf8

2007-01-18 Thread Yongwei Wu
On 1/18/07, DervishD <[EMAIL PROTECTED]> wrote: * Yongwei Wu <[EMAIL PROTECTED]> dixit: > On 1/18/07, DervishD <[EMAIL PROTECTED]> wrote: > >> Did you set 'fileencodings' to an empty string? Otherwise this would > >> not work. > > > >Apart from fixing the above (including the last version I

Re: latin1 vs utf8

2007-01-18 Thread DervishD
Hi Yongwei :) * Yongwei Wu <[EMAIL PROTECTED]> dixit: > On 1/18/07, DervishD <[EMAIL PROTECTED]> wrote: > >> Did you set 'fileencodings' to an empty string? Otherwise this would > >> not work. > > > >Apart from fixing the above (including the last version I posted > >here, which has a ca

Re: Spam in "Tips" in Vim's website

2007-01-18 Thread DervishD
Hi Salman :) * Halim, Salman <[EMAIL PROTECTED]> dixit: > Spam in comments can also be addressed by moderators as of fairly > recently. When you come across such a comment, you can mark the > comment as spam, leaving the rest of the tip and comments alone. > While you are correct that you ma