|
@@ -43,21 +43,11 @@ export class KeybindingSrv {
|
|
|
this.bind('g h', this.goToHome);
|
|
this.bind('g h', this.goToHome);
|
|
|
this.bind('g a', this.openAlerting);
|
|
this.bind('g a', this.openAlerting);
|
|
|
this.bind('g p', this.goToProfile);
|
|
this.bind('g p', this.goToProfile);
|
|
|
- this.bind('s s', this.openSearchStarred);
|
|
|
|
|
this.bind('s o', this.openSearch);
|
|
this.bind('s o', this.openSearch);
|
|
|
- this.bind('s t', this.openSearchTags);
|
|
|
|
|
this.bind('f', this.openSearch);
|
|
this.bind('f', this.openSearch);
|
|
|
this.bindGlobal('esc', this.exit);
|
|
this.bindGlobal('esc', this.exit);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- openSearchStarred() {
|
|
|
|
|
- appEvents.emit('show-dash-search', { starred: true });
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- openSearchTags() {
|
|
|
|
|
- appEvents.emit('show-dash-search', { tagsMode: true });
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
openSearch() {
|
|
openSearch() {
|
|
|
appEvents.emit('show-dash-search');
|
|
appEvents.emit('show-dash-search');
|
|
|
}
|
|
}
|