mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Improve goto_file_impl
(#9065)
This commit is contained in:
parent
97afd67fca
commit
e69292e5eb
2 changed files with 70 additions and 19 deletions
|
@ -153,6 +153,28 @@ async fn test_goto_file_impl() -> anyhow::Result<()> {
|
|||
)
|
||||
.await?;
|
||||
|
||||
// ';' is behind the path
|
||||
test_key_sequence(
|
||||
&mut AppBuilder::new().with_file(file.path(), None).build()?,
|
||||
Some("iimport 'one.js';<esc>B;gf"),
|
||||
Some(&|app| {
|
||||
assert_eq!(1, match_paths(app, vec!["one.js"]));
|
||||
}),
|
||||
false,
|
||||
)
|
||||
.await?;
|
||||
|
||||
// allow numeric values in path
|
||||
test_key_sequence(
|
||||
&mut AppBuilder::new().with_file(file.path(), None).build()?,
|
||||
Some("iimport 'one123.js'<esc>B;gf"),
|
||||
Some(&|app| {
|
||||
assert_eq!(1, match_paths(app, vec!["one123.js"]));
|
||||
}),
|
||||
false,
|
||||
)
|
||||
.await?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue