From 130e15439a3a36d3e74756ccae666b3656a10f9e Mon Sep 17 00:00:00 2001 From: MultisampledNight Date: Sun, 24 Jul 2022 17:24:30 +0200 Subject: [PATCH] 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. --- src/cmd_line.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd_line.rs b/src/cmd_line.rs index 4882b32..fba9c8a 100644 --- a/src/cmd_line.rs +++ b/src/cmd_line.rs @@ -87,7 +87,7 @@ pub fn handle_command_line_arguments(args: Vec) -> Result<(), String> { .arg( Arg::new("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::new("no_tabs")