+1
--
--
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 information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To un
On Tue, Nov 6, 2018 at 4:48 AM Bram Moolenaar wrote:
> There have been no new entries for a couple of days. I removed the
> remarks and discussions, items that can't be voted on.
> If you think something went missing, please ask the author of the item
> you commented on to edit his proposal.
>
>
On Tue, Nov 6, 2018 at 3:26 AM Bram Moolenaar wrote:
> + static int
> + is_valid_mess_lang(char_u *lang)
> + {
> + return lang != NULL && ASCII_ISALPHA(lang[0]) && ASCII_ISALPHA(lang[1]);
Any chance of segfault due to strlen(lang) < 1 here?
nazri
--
--
You received this message from t
In 2010 I started a project to bring such functionality to Vim. The project
implements the function popuplist with the following interface:
let items = ['Item 1', 'Item 2', 'Item 3']
let opts = {'current': 1 }
let rv = popuplist(items, 'Example', opts)
if rv.status == 'accept'
On Wednesday, November 7, 2018 at 2:02:38 AM UTC-5, Christian Brabandt wrote:
> On Di, 06 Nov 2018, justrajdeep wrote:
>
> > Hi
> >
> > I have a file which is a system_verilog file but it is an erb file.
> >
> > Hence i have the following modline
> >
> > // vim:
> > filetype=verilog_syste