We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd4ba4f commit 0a38630Copy full SHA for 0a38630
1 file changed
src/uu/stty/src/flags.rs
@@ -357,6 +357,18 @@ pub const CONTROL_CHARS: &[(&str, S)] = &[
357
("stop", S::VSTOP),
358
// Sends a suspend signal (SIGTSTP).
359
("susp", S::VSUSP),
360
+ #[cfg(any(
361
+ target_os = "freebsd",
362
+ target_os = "dragonfly",
363
+ target_os = "ios",
364
+ target_os = "macos",
365
+ target_os = "netbsd",
366
+ target_os = "openbsd",
367
+ target_os = "aix",
368
+ target_os = "solaris"
369
+ ))]
370
+ // Sends a delayed suspend signal (SIGTSTP).
371
+ ("dsusp", S::VDSUSP),
372
// Reprints the current line.
373
("rprnt", S::VREPRINT),
374
// Deletes the last word typed.
0 commit comments