Reword --nofork help text to be more specific

In reference to #1055. Seemingly the previous help text suggested to the
OP that Neovide could "embed" itself directly into the terminal
emulator, while the flag only cares about process management.
main
MultisampledNight 2 years ago
parent 2a9fa22341
commit 130e15439a
No known key found for this signature in database
GPG Key ID: C81EF9B053977241

@ -87,7 +87,7 @@ pub fn handle_command_line_arguments(args: Vec<String>) -> Result<(), String> {
.arg( .arg(
Arg::new("nofork") Arg::new("nofork")
.long("nofork") .long("nofork")
.help("Do not detach process from terminal"), .help(r#"Instead of spawning a child process and leaking it, be "blocking" and have the shell directly as parent process"#),
) )
.arg( .arg(
Arg::new("no_tabs") Arg::new("no_tabs")

Loading…
Cancel
Save