mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Improve %% escaping error message (#13018)
This commit is contained in:
parent
9440feae7c
commit
82f8ac208f
2 changed files with 16 additions and 1 deletions
|
@ -223,7 +223,11 @@ impl fmt::Display for ParseArgsError<'_> {
|
|||
write!(f, "flag '--{flag}' missing an argument")
|
||||
}
|
||||
Self::MissingExpansionDelimiter { expansion } => {
|
||||
write!(f, "missing a string delimiter after '%{expansion}'")
|
||||
if expansion.is_empty() {
|
||||
write!(f, "'%' was not properly escaped. Please use '%%'")
|
||||
} else {
|
||||
write!(f, "missing a string delimiter after '%{expansion}'")
|
||||
}
|
||||
}
|
||||
Self::UnknownExpansion { kind } => {
|
||||
write!(f, "unknown expansion '{kind}'")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue