Added basic inputs-group to :hint

This commit is contained in:
Liam BEGUIN 2016-05-15 22:46:12 -04:00
parent 0c1e82a103
commit 3b0354518b

View File

@ -38,7 +38,7 @@ from qutebrowser.utils import log, usertypes, utils
Group = usertypes.enum('Group', ['all', 'links', 'images', 'url', 'prevnext',
'focus'])
'focus', 'inputs'])
SELECTORS = {
@ -50,6 +50,7 @@ SELECTORS = {
Group.url: '[src], [href]',
Group.prevnext: 'a, area, button, link, [role=button]',
Group.focus: '*:focus',
Group.inputs: 'input[type=text], input[type=password], textarea',
}