mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Do not record keys pressed by macros while recording a macro (#12733)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
This commit is contained in:
parent
6906164177
commit
80dbe030a1
2 changed files with 32 additions and 2 deletions
|
@ -137,9 +137,12 @@ impl Compositor {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn handle_event(&mut self, event: &Event, cx: &mut Context) -> bool {
|
pub fn handle_event(&mut self, event: &Event, cx: &mut Context) -> bool {
|
||||||
// If it is a key event and a macro is being recorded, push the key event to the recording.
|
// If it is a key event, a macro is being recorded, and a macro isn't being replayed,
|
||||||
|
// push the key event to the recording.
|
||||||
if let (Event::Key(key), Some((_, keys))) = (event, &mut cx.editor.macro_recording) {
|
if let (Event::Key(key), Some((_, keys))) = (event, &mut cx.editor.macro_recording) {
|
||||||
keys.push(*key);
|
if cx.editor.macro_replaying.is_empty() {
|
||||||
|
keys.push(*key);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut callbacks = Vec::new();
|
let mut callbacks = Vec::new();
|
||||||
|
|
|
@ -793,3 +793,30 @@ fn foo() {
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
|
async fn macro_play_within_macro_record() -> anyhow::Result<()> {
|
||||||
|
// <https://github.com/helix-editor/helix/issues/12697>
|
||||||
|
//
|
||||||
|
// * `"aQihello<esc>Q` record a macro to register 'a' which inserts "hello"
|
||||||
|
// * `Q"aq<space>world<esc>Q` record a macro to the default macro register which plays the
|
||||||
|
// macro in register 'a' and then inserts " world"
|
||||||
|
// * `%d` clear the buffer
|
||||||
|
// * `q` replay the macro in the default macro register
|
||||||
|
// * `i<ret>` add a newline at the end
|
||||||
|
//
|
||||||
|
// The inner macro in register 'a' should replay within the outer macro exactly once to insert
|
||||||
|
// "hello world".
|
||||||
|
test((
|
||||||
|
indoc! {"\
|
||||||
|
#[|]#
|
||||||
|
"},
|
||||||
|
r#""aQihello<esc>QQ"aqi<space>world<esc>Q%dqi<ret>"#,
|
||||||
|
indoc! {"\
|
||||||
|
hello world
|
||||||
|
#[|]#"},
|
||||||
|
))
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue