diff options
author | Famiu Haque <famiuhaque@protonmail.com> | 2021-10-19 01:44:17 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-18 12:44:17 -0700 |
commit | 9086938f7bd6d6ccb7f4a30fb78aeaf0d84e4471 (patch) | |
tree | 9e286903da8123085956beaf7eb9dd33e5741aad /src/nvim/screen.c | |
parent | e7ea54a3dfaf937021e68bc690c4d27eed9c1cca (diff) | |
download | rneovim-9086938f7bd6d6ccb7f4a30fb78aeaf0d84e4471.tar.gz rneovim-9086938f7bd6d6ccb7f4a30fb78aeaf0d84e4471.tar.bz2 rneovim-9086938f7bd6d6ccb7f4a30fb78aeaf0d84e4471.zip |
feat(api): evaluate statusline string #16020
Adds API function `nvim_eval_statusline` to allow evaluating a
statusline string and obtaining information regarding it.
Closes https://github.com/neovim/neovim/issues/15849
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 63f3267d8a..c65fd3a90b 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -7379,7 +7379,7 @@ void get_trans_bufname(buf_T *buf) /* * Get the character to use in a status line. Get its attributes in "*attr". */ -static int fillchar_status(int *attr, win_T *wp) +int fillchar_status(int *attr, win_T *wp) { int fill; bool is_curwin = (wp == curwin); |