We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1dbe1c commit ddd704fCopy full SHA for ddd704f
1 file changed
src/target.rs
@@ -90,9 +90,7 @@ impl Target {
90
// SIGUSR2 to reload ghostty config.
91
// Refer to https://github.com/ghostty-org/ghostty/issues/7747.
92
Self::Ghostty => {
93
- let _ = Command::new("pkill")
94
- .args(["-USR2", "-x", "ghostty"])
95
- .status();
+ let _ = Command::new("killall").args(["-USR2", "ghostty"]).status();
96
}
97
// SIGUSR1 to reload helix config
98
// Refer to https://github.com/helix-editor/helix/issues/2158#issuecomment-1910775800
0 commit comments