Mercurial > vim
view src/proto/beval.pro @ 22075:eb878f85967e v8.2.1587
patch 8.2.1587: loop for handling keys for the command line is too long
Commit: https://github.com/vim/vim/commit/eadee486c70946ad0e1746d77898d6f4f4acc817
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Sep 4 15:37:31 2020 +0200
patch 8.2.1587: loop for handling keys for the command line is too long
Problem: Loop for handling keys for the command line is too long.
Solution: Move wild menu handling to separate functions. (Yegappan
Lakshmanan, closes #6856)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 04 Sep 2020 15:45:03 +0200 |
parents | 8813e1626e0a |
children |
line wrap: on
line source
/* beval.c */ int find_word_under_cursor(int mouserow, int mousecol, int getword, int flags, win_T **winp, linenr_T *lnump, char_u **textp, int *colp, int *startcolp); int get_beval_info(BalloonEval *beval, int getword, win_T **winp, linenr_T *lnump, char_u **textp, int *colp); void post_balloon(BalloonEval *beval, char_u *mesg, list_T *list); int can_use_beval(void); void general_beval_cb(BalloonEval *beval, int state); /* vim: set ft=c : */