Rollup merge of #123355 - mu001999:rustdoc/search, r=GuillaumeGomez
Support type '/' to search Related topic on IRLO: https://internals.rust-lang.org/t/rustdoc-use-key-to-search-instead-of-s/20559
This commit is contained in:
commit
49f6c95ba3
@ -462,6 +462,7 @@ function preLoadCss(cssUrl) {
|
||||
|
||||
case "s":
|
||||
case "S":
|
||||
case "/":
|
||||
ev.preventDefault();
|
||||
searchState.focus();
|
||||
break;
|
||||
@ -1334,7 +1335,7 @@ function preLoadCss(cssUrl) {
|
||||
|
||||
const shortcuts = [
|
||||
["?", "Show this help dialog"],
|
||||
["S", "Focus the search field"],
|
||||
["S / /", "Focus the search field"],
|
||||
["↑", "Move up in search results"],
|
||||
["↓", "Move down in search results"],
|
||||
["← / →", "Switch result tab (when results focused)"],
|
||||
|
@ -129,7 +129,7 @@
|
||||
aria-label="Run search in the documentation" {#+ #}
|
||||
autocomplete="off" {#+ #}
|
||||
spellcheck="false" {#+ #}
|
||||
placeholder="Click or press ‘S’ to search, ‘?’ for more options…" {#+ #}
|
||||
placeholder="Type ‘S’ or ‘/’ to search, ‘?’ for more options…" {#+ #}
|
||||
type="search"> {# #}
|
||||
<div id="help-button" tabindex="-1"> {# #}
|
||||
<a href="{{page.root_path|safe}}help.html" title="help">?</a> {# #}
|
||||
|
Loading…
Reference in New Issue
Block a user