mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 19:38:20 +00:00
vim-patch:8.2.4184: cannot use an import in 'includeexpr'
Problem: Cannot use an import in 'includeexpr'.
Solution: Set the script context when evaluating 'includeexpr'
47bcc5f4c8
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -1661,10 +1661,15 @@ void simplify_filename(char *filename)
|
|||||||
|
|
||||||
static char *eval_includeexpr(const char *const ptr, const size_t len)
|
static char *eval_includeexpr(const char *const ptr, const size_t len)
|
||||||
{
|
{
|
||||||
|
const sctx_T save_sctx = current_sctx;
|
||||||
set_vim_var_string(VV_FNAME, ptr, (ptrdiff_t)len);
|
set_vim_var_string(VV_FNAME, ptr, (ptrdiff_t)len);
|
||||||
|
current_sctx = curbuf->b_p_script_ctx[BV_INEX].script_ctx;
|
||||||
|
|
||||||
char *res = eval_to_string_safe(curbuf->b_p_inex,
|
char *res = eval_to_string_safe(curbuf->b_p_inex,
|
||||||
was_set_insecurely(curwin, "includeexpr", OPT_LOCAL));
|
was_set_insecurely(curwin, "includeexpr", OPT_LOCAL));
|
||||||
|
|
||||||
set_vim_var_string(VV_FNAME, NULL, 0);
|
set_vim_var_string(VV_FNAME, NULL, 0);
|
||||||
|
current_sctx = save_sctx;
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user