fix(terminal): ignore $VIM and $VIMRUNTIME in pty jobs

This commit is contained in:
Gregory Anders 2023-12-07 07:58:03 -08:00
parent 4a34da82c1
commit 5e78fd7784

View File

@ -3903,6 +3903,8 @@ static const char *pty_ignored_env_vars[] = {
"COLORFGBG",
"COLORTERM",
#endif
"VIM",
"VIMRUNTIME",
NULL
};