Make ctrl-l highlight current text in edit
parent
0cd3cb3328
commit
82cdb176e1
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue