Commit 81c86e6d authored by Kushal Pandya's avatar Kushal Pandya

Merge branch '239195-slash-to-start-search-shortcut' into 'master'

Add `/` as keyboard shortcut for search

See merge request gitlab-org/gitlab!40057
parents 6d825787 0050e248
...@@ -34,6 +34,7 @@ export default class Shortcuts { ...@@ -34,6 +34,7 @@ export default class Shortcuts {
Mousetrap.bind('?', this.onToggleHelp); Mousetrap.bind('?', this.onToggleHelp);
Mousetrap.bind('s', Shortcuts.focusSearch); Mousetrap.bind('s', Shortcuts.focusSearch);
Mousetrap.bind('/', Shortcuts.focusSearch);
Mousetrap.bind('f', this.focusFilter.bind(this)); Mousetrap.bind('f', this.focusFilter.bind(this));
Mousetrap.bind('p b', Shortcuts.onTogglePerfBar); Mousetrap.bind('p b', Shortcuts.onTogglePerfBar);
......
...@@ -40,6 +40,8 @@ ...@@ -40,6 +40,8 @@
%tr %tr
%td.shortcut %td.shortcut
%kbd s %kbd s
\/
%kbd /
%td= _('Start search') %td= _('Start search')
%tr %tr
%td.shortcut %td.shortcut
......
---
title: Add `/` as keyboard shortcut for search
merge_request: 40057
author:
type: added
...@@ -27,7 +27,7 @@ These shortcuts are available in most areas of GitLab ...@@ -27,7 +27,7 @@ These shortcuts are available in most areas of GitLab
| <kbd>Shift</kbd> + <kbd>a</kbd> | Go to your Activity page. | | <kbd>Shift</kbd> + <kbd>a</kbd> | Go to your Activity page. |
| <kbd>Shift</kbd> + <kbd>l</kbd> | Go to your Milestones page. | | <kbd>Shift</kbd> + <kbd>l</kbd> | Go to your Milestones page. |
| <kbd>Shift</kbd> + <kbd>s</kbd> | Go to your Snippets page. | | <kbd>Shift</kbd> + <kbd>s</kbd> | Go to your Snippets page. |
| <kbd>s</kbd> | Put cursor in the issues/merge requests search. | | <kbd>s</kbd> / <kbd>/</kbd> | Put cursor in the search bar. |
| <kbd>Shift</kbd> + <kbd>i</kbd> | Go to your Issues page. | | <kbd>Shift</kbd> + <kbd>i</kbd> | Go to your Issues page. |
| <kbd>Shift</kbd> + <kbd>m</kbd> | Go to your Merge requests page.| | <kbd>Shift</kbd> + <kbd>m</kbd> | Go to your Merge requests page.|
| <kbd>Shift</kbd> + <kbd>t</kbd> | Go to your To-Do List page. | | <kbd>Shift</kbd> + <kbd>t</kbd> | Go to your To-Do List page. |
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment