Nicer statusbar texts when hinting
This commit is contained in:
parent
233289228b
commit
fec353809b
@ -362,7 +362,18 @@ class HintManager(QObject):
|
|||||||
if not visible_elems:
|
if not visible_elems:
|
||||||
message.error("No elements found.")
|
message.error("No elements found.")
|
||||||
return
|
return
|
||||||
message.text("Following hint...")
|
texts = {
|
||||||
|
"normal": "Follow hint...",
|
||||||
|
"tab": "Follow hint in new tab...",
|
||||||
|
"bgtab": "Follow hint in background tab...",
|
||||||
|
"yank": "Yank hint to clipboard...",
|
||||||
|
"yank_primary": "Yank hint to primary selection...",
|
||||||
|
"cmd": "Set hint in commandline...",
|
||||||
|
"cmd_tab": "Set hint in commandline as new tab...",
|
||||||
|
"cmd_bgtab": "Set hint in commandline as background tab...",
|
||||||
|
"rapid": "Follow hint (rapid mode)...",
|
||||||
|
}
|
||||||
|
message.text(texts[target])
|
||||||
strings = self._hint_strings(visible_elems)
|
strings = self._hint_strings(visible_elems)
|
||||||
for e, string in zip(visible_elems, strings):
|
for e, string in zip(visible_elems, strings):
|
||||||
label = self._draw_label(e, string)
|
label = self._draw_label(e, string)
|
||||||
|
Loading…
Reference in New Issue
Block a user