mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 04:17:43 +03:00
36 lines
780 B
Rust
36 lines
780 B
Rust
use super::*;
|
|
|
|
#[tokio::test(flavor = "multi_thread")]
|
|
async fn insert_keymap_suffix() -> anyhow::Result<()> {
|
|
test_with_config(
|
|
AppBuilder::new().with_config(config()),
|
|
("#[|]#", "iselffd", "self#[|\n]#"),
|
|
)
|
|
.await?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[tokio::test(flavor = "multi_thread")]
|
|
async fn insert_keymap_suffix_non_char() -> anyhow::Result<()> {
|
|
test_with_config(
|
|
AppBuilder::new().with_config(config()),
|
|
("#[|]#", "i<F1>ua", "a#[|\n]#"),
|
|
)
|
|
.await?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn config() -> Config {
|
|
let config = r#"
|
|
[keys.insert]
|
|
f.d = "normal_mode"
|
|
F1.j = "insert_newline"
|
|
"#;
|
|
Config::load(
|
|
Ok(config.to_owned()),
|
|
Err(helix_term::config::ConfigLoadError::default()),
|
|
)
|
|
.unwrap()
|
|
}
|