vim documentation about marks/file-marks

2006-06-11 Thread Marc Weber
Suggestion: change === *m* *mark* *Mark* m{a-zA-Z} Set mark {a-zA-Z} at cursor position (does not move the cursor, this is not a motion command).

reltime() low part incorrect in win32?

2006-06-11 Thread Eric Arnold
I'm trying to understand what I'm seeing with the msec timing on win32 (cygwin). Inside the debugger, I'm seeing: (gdb) p tm_delta $1 = {u = {LowPart = 2434313347, HighPart = 896}, {LowPart = 2434313347, HighPart = 896}, QuadPart = 3850725010563} (gdb) n 180 n1 = tm_delta.HighPar

ANN: SQLComplete.vim update to version 5.0

2006-06-11 Thread David Fishburn
Announcing an update to the sqlcomplete.vim script which is included in Vim7. If you are using dbext.vim 3.0 and taking advantage of the table and column completion capabilities the update to version 5.0 of the script makes it a bit smarter when determine if you are entering partial column names o

missing functions in visincr.vim [Was: Re: Changing a long list of entries with corresponding index]

2006-06-11 Thread Gerald Lai
I've had time to explore visincr.vim in detail today. As a result, please disregard both my questions below. For question 2, zfill IS a leading pad. I misunderstood this at first. For question 1, I now understand why the default zfill is set to a space " " character. It's because the default :II

Re: Problem with example in :help complete()

2006-06-11 Thread Gerald Lai
On Sun, 11 Jun 2006, A.J.Mechelynck wrote: Gerald Lai wrote: Hi all, [On Windows Vim 7.0, binary at ftp://ftp.vim.org/pub/vim/pc/gvim70.exe] I'm having trouble getting the example in :help complete() to work. When I hit in Insert mode, I get this: Error detected while processing function L

Re: corrupted lines

2006-06-11 Thread Hari Krishna Dara
On Sun, 11 Jun 2006 at 3:00pm, Wu Yongwei wrote: > On 6/11/06, Hari Krishna Dara <[EMAIL PROTECTED]> wrote: > > > > While modifying one of my plugins, I had to add a new variable, and so > > copy pasted some existing code and modified the name of the variable, so > > it looked like this: > > > >

Re: corrupted lines

2006-06-11 Thread Hari Krishna Dara
On Sun, 11 Jun 2006 at 1:15am, Christian J. Robinson wrote: > Yesterday (Sat, 10 Jun 2006), Hari Krishna Dara wrote: > > > exists('g:lookupfile_LookupNotifyFunc') > > " The function that should be notified when a file is selected. > > yrg t:ybbxhcsvyr_YbbxhcAbgvslShap = '' > > raqvs > > > > I

non-latin characters aren't displayed correctly in Windows menu

2006-06-11 Thread Mojca Miklavec
Hello, I translated the menus for gvim and wanted to use them under windows, but the non-latin characters simply don't show in the menu (other characters are shown instead: squares š and ž and some other character for č). All other programs under Windows work fine, the encoding should also be OK

Re: Segfault using errorformat and errorfile

2006-06-11 Thread Marc Weber
> Can you help me with finding a errorformat string ? > Or should I write another parser to remove the other lines (grep, ..) ? grep did work. I'm now using CompilerSet errorformat=%I\\[INFO]%m,%Z, \%E%f:\\[%l\\,%c]%m,%Csymbol%s,%Clocation%s,%Z, which works without grep (doesn't segf

Re: Bug with gU and German sharp s?

2006-06-11 Thread Mikolaj Machowski
Dnia niedziela, 11 czerwca 2006 15:57, Bertram Scharpf napisał: > Is there any way to tell Vim to leave the `ß' as it was? Change encoding? In latin2 (where ß also exists) it is not changed into SS but IMO this is bug. m.

Re: colseb_a.vim script, closign tags for vim /java.?

2006-06-11 Thread Luc Hermitte
* On Sun, Jun 11, 2006 at 03:13:22AM +0200, Marc Weber <[EMAIL PROTECTED]> wrote: > I want the script to automatically close > > function with > endfunction > [...] > > Using it with java I could imagine to complete > try { > > with > } catch () { > } > [...] > But I don't know exactly what

Re: Did you know vim can multitask? Nearly.. ;)

2006-06-11 Thread Luc Hermitte
Hello, * On Sat, Jun 10, 2006 at 10:46:51PM +0200, Marc Weber <[EMAIL PROTECTED]> wrote: > Hi. I've written another little script.. But by now you need sh and a > client-server version. Perhaps you like it? > gvim --servername MYSERVERNAME I'm using a similar trick in a plugin of mine [1]. Mos

Segfault using errorformat and errorfile

2006-06-11 Thread Marc Weber
Hi. I don't know much about errorformats in vim yet, I didn't manage to match these errors but I get a crash ;) It doesn't crash when removing the none error marker lines. Can you help me with finding a errorformat string ? Or should I write another parser to remove the other lines (grep, ..) ?

Re: Bug with gU and German sharp s?

2006-06-11 Thread Bertram Scharpf
Hi, Am Donnerstag, 08. Jun 2006, 13:56:35 +0200 schrieb Jürgen Krämer: > can anybody confirm this misbehaviour in VIM 7.0: > [...] typing > > iStraßen0gUe > > results in > > STRASSEn > > (note the lower case 'n'). Even `gUU' works. VIM - Vi IMproved 7.0 (2006 May 7, compiled May 28 200

Re: CurorLine, set cursorline: slow, slower, slowest ?!

2006-06-11 Thread Groleo Marius
On 6/2/06, Yakov Lerner <[EMAIL PROTECTED]> wrote: On 6/2/06, Pádraig Brady <[EMAIL PROTECTED]> wrote: > Charles E Campbell Jr wrote: > >> Unfortunately, I have to confirm the original problem. > >> Running xterm-256colors with xterm16 colorscheme in the > >> xterm, when the cursorline is highli

Re: Problem with example in :help complete()

2006-06-11 Thread A.J.Mechelynck
Gerald Lai wrote: Hi all, [On Windows Vim 7.0, binary at ftp://ftp.vim.org/pub/vim/pc/gvim70.exe] I'm having trouble getting the example in :help complete() to work. When I hit in Insert mode, I get this: Error detected while processing function ListMonths: line 1: E523: Not allowed here I

Re: colseb_a.vim script, closign tags for vim /java.?

2006-06-11 Thread A.J.Mechelynck
Marc Weber wrote: I want the script to automatically close function with endfunction while with endwhile for with endfor [...] Looks like you have ideas for omni-completion on Vim files. You may want to define 'omnifunc' in a script of one of the following names: user-private on Wind

Problem with example in :help complete()

2006-06-11 Thread Gerald Lai
Hi all, [On Windows Vim 7.0, binary at ftp://ftp.vim.org/pub/vim/pc/gvim70.exe] I'm having trouble getting the example in :help complete() to work. When I hit in Insert mode, I get this: Error detected while processing function ListMonths: line1: E523: Not allowed here I have :se

Re: corrupted lines

2006-06-11 Thread Christian J. Robinson
Yesterday (Sat, 10 Jun 2006), Hari Krishna Dara wrote: > exists('g:lookupfile_LookupNotifyFunc') > " The function that should be notified when a file is selected. > yrg t:ybbxhcsvyr_YbbxhcAbgvslShap = '' > raqvs > > I can't believe that I have fat-fingered so badly for this to get so > badly

Re: corrupted lines

2006-06-11 Thread Wu Yongwei
On 6/11/06, Hari Krishna Dara <[EMAIL PROTECTED]> wrote: While modifying one of my plugins, I had to add a new variable, and so copy pasted some existing code and modified the name of the variable, so it looked like this: exists('g:lookupfile_LookupNotifyFunc') " The function that should be n