From 82cdb176e12a93c54d543f17b762f8e995af4d0b Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 21 May 2021 12:44:24 -0400 Subject: [PATCH] Make ctrl-l highlight current text in edit --- piker/ui/_search.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/piker/ui/_search.py b/piker/ui/_search.py index b0b47195..a57894b0 100644 --- a/piker/ui/_search.py +++ b/piker/ui/_search.py @@ -668,6 +668,12 @@ async def handle_keyboard_input( continue + if ctl and key in { + Qt.Key_L, + }: + # like url (link) highlight in a web browser + bar.focus() + # selection navigation controls elif ctl and key in { Qt.Key_D,