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}'")
|
||||
|
|
|
@ -90,3 +90,14 @@ async fn shell_expansion() -> anyhow::Result<()> {
|
|||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[tokio::test(flavor = "multi_thread")]
|
||||
async fn percent_escaping() -> anyhow::Result<()> {
|
||||
test_statusline(
|
||||
r#":sh echo hello 10%"#,
|
||||
"'run-shell-command': '%' was not properly escaped. Please use '%%'",
|
||||
Severity::Error,
|
||||
)
|
||||
.await?;
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue