Re: Tabs are not correctly expanded with 2html

2018-11-30 Fir de Conversatie Ben Fritz
On Wednesday, November 28, 2018 at 5:11:35 AM UTC-6, Axel Bender wrote: > Using GVim 8.1. (Windows 10 64-bit), after applying a syntax scheme, > 2html.vim fails to correcly expand the tabs contained in the base document. > > Sample files: > > - sample.lang# The source file > - lang.vim

Re: RFC: VimL functions for managing signs

2018-11-30 Fir de Conversatie Yegappan Lakshmanan
Hi Christian, On Mon, Nov 19, 2018 at 10:40 PM Christian Brabandt wrote: > > On Mo, 19 Nov 2018, Yegappan Lakshmanan wrote: > > > Hi all, > > > > In the recent thread about adding features helpful to plugin developers, > > there was a request to add VimL functions for natively managing signs. >

Re: [vim/vim] Adjust size of inverted popupmenu when preview window is above. (#3414)

2018-11-30 Fir de Conversatie h_east
Hi Bram, I found a reproducing procedure where the height of the popup window is extremely narrow in previous version of 8.1.0355. How to reproduce (on 8.1.0354): - Open a terminal emulator whose size is 80x24. < Size is important!! - Prepare the following file named pp.vim. set

Re: [vim/vim] Adjust size of inverted popupmenu when preview window is above. (#3414)

2018-11-30 Fir de Conversatie h_east
Ah, The attached patch does not include the difference of the newly added file.. New patch attached. -- Best regards, Hirohito Higashi (h_east) -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more

Patch 8.1.0553

2018-11-30 Fir de Conversatie Bram Moolenaar
Patch 8.1.0553 Problem:It is not easy to edit a script that was sourced. Solution: Add a count to ":scriptnames", so that ":script 40" edits the script with script ID 40. Files: src/ex_cmds.h, src/ex_cmds2.c, src/testdir/test_scriptnames.vim, src/Make_all.mak,

Re: Tabs are not correctly expanded with 2html

2018-11-30 Fir de Conversatie Ben Fritz
On Wednesday, November 28, 2018 at 5:11:35 AM UTC-6, Axel Bender wrote: > Using GVim 8.1. (Windows 10 64-bit), after applying a syntax scheme, > 2html.vim fails to correcly expand the tabs contained in the base document. > > Sample files: > > - sample.lang# The source file > - lang.vim

Re: [vim/vim] Vim segfaults on macOS 10.13/14 on hitting `n` right after startup (#3647)

2018-11-30 Fir de Conversatie Christian Brabandt
It looks like there is a strlen call with a null Pointer in do_search(). However the mentioned bad commit does not change anything in do_search function not even touch search.c > Am 30.11.2018 um 20:49 schrieb chdiza (Vim Github Repository) > : > > libsystem_platform.dylib`_platform_strlen

Patch 8.1.0552

2018-11-30 Fir de Conversatie Bram Moolenaar
Patch 8.1.0552 Problem:Saved last search pattern may not be restored. Solution: Call restore_last_search_pattern(). Add a check for balancing saving and restoring the last search pattern. Files: src/ex_getln.c, src/search.c *** ../vim-8.1.0551/src/ex_getln.c