Mercurial > vim
view src/proto/evalfunc.pro @ 16495:899db156cce3 v8.1.1251
patch 8.1.1251: no test for completion of mapping keys
commit https://github.com/vim/vim/commit/2cb9f0253228478ec27265ff40f59c629874d695
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri May 3 15:13:57 2019 +0200
patch 8.1.1251: no test for completion of mapping keys
Problem: No test for completion of mapping keys.
Solution: Add a test. Also clean up the code.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 03 May 2019 15:15:05 +0200 |
parents | 73b153ed5af8 |
children | 4790302965fc |
line wrap: on
line source
/* evalfunc.c */ char_u *get_function_name(expand_T *xp, int idx); char_u *get_expr_name(expand_T *xp, int idx); int find_internal_func(char_u *name); int call_internal_func(char_u *name, int argcount, typval_T *argvars, typval_T *rettv); buf_T *buflist_find_by_name(char_u *name, int curtab_only); buf_T *tv_get_buf(typval_T *tv, int curtab_only); void execute_redir_str(char_u *value, int value_len); void mzscheme_call_vim(char_u *name, typval_T *args, typval_T *rettv); float_T vim_round(float_T f); long do_searchpair(char_u *spat, char_u *mpat, char_u *epat, int dir, typval_T *skip, int flags, pos_T *match_pos, linenr_T lnum_stop, long time_limit); void f_string(typval_T *argvars, typval_T *rettv); char_u *get_callback(typval_T *arg, partial_T **pp); void free_callback(char_u *callback, partial_T *partial); /* vim: set ft=c : */