Mercurial > vim
view src/proto/gui_beval.pro @ 22109:3785043f8768 v8.2.1604
patch 8.2.1604: Vim9: cannot use "true" with getcompletion()
Commit: https://github.com/vim/vim/commit/d217a87755ba01fc626b1c178c682fcd05ab3a28
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Sep 5 18:31:33 2020 +0200
patch 8.2.1604: Vim9: cannot use "true" with getcompletion()
Problem: Vim9: cannot use "true" with getcompletion().
Solution: use tv_get_bool_chk(). (closes https://github.com/vim/vim/issues/6875)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 05 Sep 2020 18:45:04 +0200 |
parents | 1a450ce6980c |
children |
line wrap: on
line source
/* gui_beval.c */ BalloonEval *gui_mch_create_beval_area(void *target, char_u *mesg, void (*mesgCB)(BalloonEval *, int), void *clientData); void gui_mch_destroy_beval_area(BalloonEval *beval); void gui_mch_enable_beval_area(BalloonEval *beval); void gui_mch_disable_beval_area(BalloonEval *beval); BalloonEval *gui_mch_currently_showing_beval(void); void gui_mch_post_balloon(BalloonEval *beval, char_u *mesg); void gui_mch_unpost_balloon(BalloonEval *beval); /* vim: set ft=c : */