1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 13:21:38 +03:00

feat: add nu.exe to default skip_close_confirmation_for_processes_named

It's obvious that Nushell is intended to be skipped by default for close
confirmation. However, on Windows, Nushell instances are named `nu.exe`,
not `nu`, so they don't get skip-closed properly. Add `nu.exe` alongside
`nu`, so Windows behaves as expected.
This commit is contained in:
Erich Gubler 2023-04-10 12:03:11 -04:00 committed by Wez Furlong
parent 0eeca6c2c5
commit a58baacdef

View File

@ -1673,6 +1673,7 @@ fn default_stateless_process_list() -> Vec<String> {
"fish",
"tmux",
"nu",
"nu.exe",
"cmd.exe",
"pwsh.exe",
"powershell.exe",