Merge pull request #26456 from gpanders/ignore-vim-runtime

fix(terminal): ignore $VIM and $VIMRUNTIME in pty jobs
This commit is contained in:
Gregory Anders
2023-12-07 13:02:02 -08:00
committed by GitHub
7 changed files with 54 additions and 5 deletions

View File

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