commit 5e78fd7784509dbbe146748e9264e5129cf68ab8 parent 4a34da82c18e6da1e46d6bf3d21082a6b6c8b947 Author: Gregory Anders <greg@gpanders.com> Date: Thu, 7 Dec 2023 07:58:03 -0800 fix(terminal): ignore $VIM and $VIMRUNTIME in pty jobs Diffstat:
| M | src/nvim/eval/funcs.c | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/nvim/eval/funcs.c b/src/nvim/eval/funcs.c @@ -3903,6 +3903,8 @@ static const char *pty_ignored_env_vars[] = { "COLORFGBG", "COLORTERM", #endif + "VIM", + "VIMRUNTIME", NULL };