diff options
author | Lukas Eipert <leipert@gitlab.com> | 2018-05-17 11:56:10 +0200 |
---|---|---|
committer | Lukas Eipert <leipert@gitlab.com> | 2018-05-17 12:07:47 +0200 |
commit | 38206ef44e9034a7a759510cfde55f817177b06a (patch) | |
tree | 352991f8193bcd8e02e4893def72c1ff56282d7d | |
parent | 1ac27f2fea0011ef252cd7c8de2d1fc08005a7db (diff) | |
download | gitlab-ce-46427-keyboard-shortcuts-for-kubernetes-and-environments.tar.gz |
remove outdated `g t` shortcut for TODO46427-keyboard-shortcuts-for-kubernetes-and-environments
The global TODO is actually accessible by `Shift + T`, it should probably have been removed a long time ago:
- https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/10243
-rw-r--r-- | app/assets/javascripts/shortcuts_navigation.js | 1 | ||||
-rw-r--r-- | changelogs/unreleased/46427-remove-outdated-todos-shortcut.yml | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/app/assets/javascripts/shortcuts_navigation.js b/app/assets/javascripts/shortcuts_navigation.js index 1295f4afc80..78f7353eb0d 100644 --- a/app/assets/javascripts/shortcuts_navigation.js +++ b/app/assets/javascripts/shortcuts_navigation.js @@ -16,7 +16,6 @@ export default class ShortcutsNavigation extends Shortcuts { Mousetrap.bind('g i', () => findAndFollowLink('.shortcuts-issues')); Mousetrap.bind('g b', () => findAndFollowLink('.shortcuts-issue-boards')); Mousetrap.bind('g m', () => findAndFollowLink('.shortcuts-merge_requests')); - Mousetrap.bind('g t', () => findAndFollowLink('.shortcuts-todos')); Mousetrap.bind('g w', () => findAndFollowLink('.shortcuts-wiki')); Mousetrap.bind('g s', () => findAndFollowLink('.shortcuts-snippets')); Mousetrap.bind('g k', () => findAndFollowLink('.shortcuts-kubernetes')); diff --git a/changelogs/unreleased/46427-remove-outdated-todos-shortcut.yml b/changelogs/unreleased/46427-remove-outdated-todos-shortcut.yml new file mode 100644 index 00000000000..f416e35030e --- /dev/null +++ b/changelogs/unreleased/46427-remove-outdated-todos-shortcut.yml @@ -0,0 +1,5 @@ +--- +title: Removes outdated `g t` shortcut for TODO in favor of `Shift+T` +merge_request: 19002 +author: +type: removed |