diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-07-29 20:15:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-07-29 20:15:08 +0200 |
commit | c6df10e5d33ffab2c392626e285317ea8241ebff (patch) | |
tree | b8575224551ff6774d6eaaa2a716aede712967fb /src/proto/evalfunc.pro | |
parent | 70229f951f00cdcff790f2e70b0b0a601202e9e7 (diff) | |
download | vim-git-c6df10e5d33ffab2c392626e285317ea8241ebff.tar.gz |
patch 8.0.0804: terminal window functions not yet implementedv8.0.0803
Problem: Terminal window functions not yet implemented.
Solution: Implement several functions. Add a first test. (Yasuhiro
Matsumoto, closes #1871)
Diffstat (limited to 'src/proto/evalfunc.pro')
-rw-r--r-- | src/proto/evalfunc.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/evalfunc.pro b/src/proto/evalfunc.pro index c673e27a5..174afb6f2 100644 --- a/src/proto/evalfunc.pro +++ b/src/proto/evalfunc.pro @@ -1,4 +1,5 @@ /* evalfunc.c */ +buf_T* get_buf_tv(typval_T *tv, int curtab_only); 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); |