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 334a742 commit 60d3cffCopy full SHA for 60d3cff
clap_complete/src/env/shells.rs
@@ -416,13 +416,13 @@ compdef _clap_dynamic_completer_NAME BIN"#
416
}
417
418
impl Zsh {
419
- /// Escape help string
420
- fn escape_help(string: &str) -> String {
421
- string.replace('\\', "\\\\")
422
- }
423
-
424
/// Escape value string
425
fn escape_value(string: &str) -> String {
426
string.replace('\\', "\\\\").replace(':', "\\:")
427
+
+ /// Escape help string
+ fn escape_help(string: &str) -> String {
+ string.replace('\\', "\\\\")
+ }
428
0 commit comments