mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
selection: allow selections while searching scrollback
This commit is contained in:
parent
2895f8fa10
commit
58d0657a97
1 changed files with 4 additions and 1 deletions
|
|
@ -20,7 +20,10 @@
|
|||
bool
|
||||
selection_enabled(const struct terminal *term)
|
||||
{
|
||||
return term->mouse_tracking == MOUSE_NONE || term->kbd.shift;
|
||||
return
|
||||
term->mouse_tracking == MOUSE_NONE ||
|
||||
term->kbd.shift ||
|
||||
term->is_searching;
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue