diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-06-07 10:17:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-07 10:17:19 +0800 |
commit | fcaf0d5f3824431520a0b6353c771107cc63ed4e (patch) | |
tree | 3c4cd503d1e881b68feaa5c235906f6f9ca7949b /src/nvim/eval.c | |
parent | 0e0a166a0cc5a2dc199136e313e58c27bfb91977 (diff) | |
parent | dd24ea819507e3a5da04df55df7dda5240e5b57f (diff) | |
download | rneovim-fcaf0d5f3824431520a0b6353c771107cc63ed4e.tar.gz rneovim-fcaf0d5f3824431520a0b6353c771107cc63ed4e.tar.bz2 rneovim-fcaf0d5f3824431520a0b6353c771107cc63ed4e.zip |
Merge pull request #23943 from zeertzjq/autocmd-fname
fix(events): don't expand non-file as file name
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 72005b1f35..ec5437a0b2 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -8609,6 +8609,7 @@ typval_T eval_call_provider(char *provider, char *method, list_T *arguments, boo .es_entry = ((estack_T *)exestack.ga_data)[exestack.ga_len - 1], .autocmd_fname = autocmd_fname, .autocmd_match = autocmd_match, + .autocmd_fname_full = autocmd_fname_full, .autocmd_bufnr = autocmd_bufnr, .funccalp = (void *)get_current_funccal() }; |