Make ctrl-l highlight current text in edit

symbol_search
Tyler Goodlet 2021-05-21 12:44:24 -04:00
parent 0cd3cb3328
commit 82cdb176e1
1 changed files with 6 additions and 0 deletions

View File

@ -668,6 +668,12 @@ async def handle_keyboard_input(
continue continue
if ctl and key in {
Qt.Key_L,
}:
# like url (link) highlight in a web browser
bar.focus()
# selection navigation controls # selection navigation controls
elif ctl and key in { elif ctl and key in {
Qt.Key_D, Qt.Key_D,