mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-22 05:33:45 -04: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
|
bool
|
||||||
selection_enabled(const struct terminal *term)
|
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
|
bool
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue