Re: Crash with strftime()

2007-05-23 Thread Anatoli Sakhnik
a debugger. -- Anatoli Sakhnik. On 23/05/07, Andy Wokula [EMAIL PROTECTED] wrote: Not nice: :echo strftime(%e) %e - some undefined code I used by accident makes Vim crash. (GVim 7.0.235, Win32) -- Regards, Andy

Re: Crash with strftime()

2007-05-23 Thread Anatoli Sakhnik
I've forgotten. The version of mine is 7.1. -- Anatoli Sakhnik. On 23/05/07, Andy Wokula [EMAIL PROTECTED] wrote: Also no crash with the original GVim 7.0 Win32 distribution (returns empty string). -- Regards, Andy

$VIMRUNTIME problem

2007-05-08 Thread Anatoli Sakhnik
with errors: gui_w32.c:236: error: redefinition of `struct tagNMTTDISPINFOA' gui_w32.c:246: error: redefinition of `struct tagNMTTDISPINFOW'. Please note, that I downloaded only unix and extra packages. Sorry, I don't have enough time to dig these problems. -- Anatoli Sakhnik.

Re: $VIMRUNTIME problem

2007-05-08 Thread Anatoli Sakhnik
. Probably, I'll look at the problem with compilation under windows the day after tomorrow if the problem won't have been solved by that time (I have no possibility just at the moment at all). -- Anatoli Sakhnik. On 08/05/07, A.J.Mechelynck [EMAIL PROTECTED] wrote: Anatoli Sakhnik wrote: Hello

Re: Caps lock with keymap

2006-12-06 Thread Anatoli Sakhnik
to tune to the pitch of a machine, won't you? -- Anatoli Sakhnik. On 06/12/06, A.J.Mechelynck [EMAIL PROTECTED] wrote: Anatoli Sakhnik wrote: The functioning of the Caps Lock key is totally transparent to Vim, because vim uses cooked keyboard input. Vim doesn't get the Caps Lock keypress

Mapping j - gj in insert mode.

2006-11-03 Thread Anatoli Sakhnik
3. down titlegj| The bar stays for the cursor here. Also appeared that when I perform an ordinary keyword completion with just c-n or c-p the vim behaves, as I expect. Can anyone advise me, how to live with this little annoyance? -- Anatoli Sakhnik http://koresha.org/sakhnik http

Re: Mapping j - gj in insert mode.

2006-11-03 Thread Anatoli Sakhnik
Thank you! On 03/11/06, Georg Dahn [EMAIL PROTECTED] wrote: Hi! Just try the following mappings: Make cursor keys ignore wrapping inoremap Down C-R=pumvisible() ? \ltDown : \ltC-OgjCR inoremap Up C-R=pumvisible() ? \ltUp : \ltC-OgkCR You can find them in evim.vim. Best wishes, Georg

Register size

2006-06-21 Thread Anatoli Sakhnik
Hello, vim users! Can anyone tell me how big a vim register is? It's very unpleasant, when I yank some piece of text in the source and can paste only part of it. Is there a restriction? No word about the subject neither in the documentation nor in the web. -- Anatoli Sakhnik

Re: Register size

2006-06-21 Thread Anatoli Sakhnik
Let's just wait a while until I encounter the problem again. I think there's an unexpected feature either in the win32 version of the vim or in one of plugins I use. -- Sakhnik On 21/06/06, Tim Chase [EMAIL PROTECTED] wrote: I can't say I've hit any abnormal limits either, and I've

Minor bug: Crash of the win32 gui version under network start

2006-06-06 Thread Anatoli Sakhnik
was: regexp.c:4198. Just before the trap the debugger complained that someone wrote data after allocated heap block (the address corresponds to the variable 'cond'). Should I pay more attention on this bug to provide more info? -- Anatoli Sakhnik. P.S.: The version without gui works just fine.

Why does the function go into an infinite cycle?

2006-04-11 Thread Anatoli Sakhnik
Hello! Can anyone tell me what's wrong in the following function. I select something, press \/, enter _graph on the prompt and get another prompt immediately... function! VisualRangeSearch(flags) let pat = input(','/) let s = '\%V'.pat call search(s, a:flags) endf vnoremap Leader/