Improve keyboard shortcuts

This commit is contained in:
syuilo 2018-09-18 14:43:54 +09:00
parent f4045fb5b3
commit dba04cc59c
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 6 additions and 6 deletions

View file

@ -77,10 +77,10 @@ export default Vue.extend({
return {
'esc': this.close,
'enter|space|plus': this.choose,
'up': this.focusUp,
'right': this.focusRight,
'down': this.focusDown,
'left': this.focusLeft,
'up|k': this.focusUp,
'left|h|shift+tab': this.focusLeft,
'right|l|tab': this.focusRight,
'down|j': this.focusDown,
'1': () => this.react('like'),
'2': () => this.react('love'),
'3': () => this.react('laugh'),

View file

@ -116,8 +116,8 @@ export default Vue.extend({
'r|left': this.reply,
'a|plus': () => this.react(true),
'q|right': this.renote,
'up|shift+tab': this.focusBefore,
'down|tab': this.focusAfter,
'up|k|shift+tab': this.focusBefore,
'down|j|tab': this.focusAfter,
'1': () => this.reactDirectly('like'),
'2': () => this.reactDirectly('love'),
'3': () => this.reactDirectly('laugh'),