mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +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
|
@ -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