Currently rustdoc's keyboard shortcuts use Tab to cycle between the tabs at the top of search results, and the arrow keys for moving through search results.
It's much more common for Tab and Shift + Tab to be used for navigating a list, and you can autosupport this by adding tabindexes, I think those autoskip display:none elements as well. It's pretty bad form to override Tab. Perhaps we should use tabIndex for this and use something else for switching the search result tabs?
Currently rustdoc's keyboard shortcuts use Tab to cycle between the tabs at the top of search results, and the arrow keys for moving through search results.
It's much more common for Tab and Shift + Tab to be used for navigating a list, and you can autosupport this by adding
tabindexes, I think those autoskipdisplay:noneelements as well. It's pretty bad form to override Tab. Perhaps we should usetabIndexfor this and use something else for switching the search result tabs?