Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/commands.rs')
| -rw-r--r-- | helix-term/src/commands.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index f77e27a2..f829e4d5 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -2591,7 +2591,8 @@ fn buffer_picker(cx: &mut Context) { .primary() .cursor_line(doc.text().slice(..)); Some((meta.id.into(), Some((line, line)))) - }); + }) + .with_id("buffer-picker"); cx.push_layer(Box::new(overlaid(picker))); } |