Re: pum behaviour

2007-08-21 Fir de Conversatie A.Politz
Looks like I should look for a different mailagent, the identation looks broken. Please get it from here : http://www.fh-trier.de/~politza/vim/pum_patch.diff.gz -ap --~--~-~--~~~---~--~~ You received this message from the "vim_dev" maillist. For more information

Re: pum behaviour

2007-08-21 Fir de Conversatie A.Politz
Purpose of this patch : Prevent the screen from updating if the pum is visible, which results in a flashing effect. Only do it in the rare cases, when it overlaps the pvw. There is still an issue with this, if the completion function is still searching after it had added some words to the menu, at

Re: pum behaviour

2007-08-21 Fir de Conversatie Jjgod Jiang
Hi, 2007/8/22, A.Politz <[EMAIL PROTECTED]>: > Since a couple of weeks or even months, I use a custom build vim. > I was annoyed by the `flickering` popup menu (pum), so I dived > right into the vim-code. It was daunting for me, still had issues with > the language. > So I tried to find the right

patch to fix uninitialised memory access in utf_off2cells()

2007-08-21 Fir de Conversatie Dominique Pelle
Hi Valgrind memory checker reports the following error: ==10724== Conditional jump or move depends on uninitialized value(s) ==10724==at 0x810A1EB: utf_off2cells (mbyte.c:1338) ==10724==by 0x815265C: screen_puts_len (screen.c:6326) ==10724==by 0x80EE251: screen_puts_mbyte (message.c:1

Re: pum behaviour

2007-08-21 Fir de Conversatie Nico Weber
Hi, > As a result, I understood 1% of the code and had a 'behaving` pum, > which only redraws the screen at the start,end and when hiding the > pvw. > If there is any interest, I can post that patch. I am interested. Nico --~--~-~--~~~---~--~~ You received t

Re: pum behaviour

2007-08-21 Fir de Conversatie Bram Moolenaar
A.Politz wrote: > Since a couple of weeks or even months, I use a custom build vim. > I was annoyed by the `flickering` popup menu (pum), so I dived > right into the vim-code. It was daunting for me, still had issues with > the language. > So I tried to find the right spots, by mass spamming sta

Keeping the cursor fixed after undojoin and undo

2007-08-21 Fir de Conversatie Gautam Iyer
Hi All, Consider the following scenario: 1. User makes some changes. 2. A script does ":undojoin" and then makes a few changes (with :keepjumps). 3. User does ":undo". The cursor after step 3. will be on the most recent change made by the script. Is it possible to have the cu

pum behaviour

2007-08-21 Fir de Conversatie A.Politz
Hello ! Since a couple of weeks or even months, I use a custom build vim. I was annoyed by the `flickering` popup menu (pum), so I dived right into the vim-code. It was daunting for me, still had issues with the language. So I tried to find the right spots, by mass spamming statements that preven

BadSpell not grouped properly?

2007-08-21 Fir de Conversatie Suresh Govindachar
Hello, Invoking he following command -- when is 0 or 1: :echo synIDattr(synID(line("."), col("."), ), "name") when the cursor is on the badly spelled word "ontiger" int foo; /* this is an ontiger */ results in the same answer cComment. Should it not respond as BadSpel

Re: Minor fix to a.vim plugin documentation

2007-08-21 Fir de Conversatie Charles E Campbell Jr
Michael Henry wrote: >The a.vim (alternate) plugin's[1] documentation file begins with a blank >line, preventing it from showing up in the local-additions (:help >local-additions) section of Vim's help system[2]. Simply removing the >line corrects this minor problem. > > Changes to plugins

patch 7.1.087

2007-08-21 Fir de Conversatie Bram Moolenaar
Patch 7.1.087 Problem:Reading past ":cscope find" command. Writing past end of a buffer. Solution: Check length of the argument before using the pattern. Use vim_strncpy(). (Dominique Pelle) Files: if_cscope.c *** ../vim-7.1.086/src/if_cscope.c Sun Mar 11 15:48:29

patch 7.1.086

2007-08-21 Fir de Conversatie Bram Moolenaar
Patch 7.1.086 Problem:Crash when using specific Python syntax highlighting. (Quirk) Solution: Check for a negative index, coming from a keyword match at the start of a line from a saved state. Files: src/syntax.c *** ../vim-7.1.085/src/syntax.c Tue Aug 14 23:06:51 2007 -

patch 7.1.085

2007-08-21 Fir de Conversatie Bram Moolenaar
Patch 7.1.085 Problem:":e fold.c" then ":sp fold.c" results in folds of original window to disappear. (Akita Noek) Solution: Invoke foldUpdateAll() for all windows of the changed buffer. (Martin Toft) Files: src/ex_cmds.c *** ../vim-7.1.084/src/ex_cmds.c

patch 7.1.084

2007-08-21 Fir de Conversatie Bram Moolenaar
Patch 7.1.084 Problem:Using the "-nb" argument twice causes netbeans not to get fileOpened events. Solution: Change "&" to "&&". (Xavier de Gaye) Files: src/ex_cmds.c *** ../vim-7.1.083/src/ex_cmds.cWed Jul 25 22:55:22 2007 --- src/ex_cmds.c Tue Aug 21 15:02

Re: netbeans fileOpened events missing when gvim is started with two '-nb' options

2007-08-21 Fir de Conversatie Bram Moolenaar
Xavier de Gaye wrote: > When gvim is started with two '-nb' command line options, the global > variable 'usingNetbeans' has a value of 2, and the following condition > in ex_cmds.c is always false: > > usingNetbeans & ((flags & ECMD_SET_HELP) != ECMD_SET_HELP) > > since 2 & 1 equals 0, and