Improve keyboard shortcut
This commit is contained in:
parent
5184a07cf2
commit
87b6ef0ec5
|
@ -115,6 +115,7 @@ export default Vue.extend({
|
||||||
return {
|
return {
|
||||||
'r|left': () => this.reply(true),
|
'r|left': () => this.reply(true),
|
||||||
'a|plus': () => this.react(true),
|
'a|plus': () => this.react(true),
|
||||||
|
'ctrl+q|ctrl+right': this.renoteDirectly,
|
||||||
'q|right': () => this.renote(true),
|
'q|right': () => this.renote(true),
|
||||||
'up|k|shift+tab': this.focusBefore,
|
'up|k|shift+tab': this.focusBefore,
|
||||||
'down|j|tab': this.focusAfter,
|
'down|j|tab': this.focusAfter,
|
||||||
|
@ -254,6 +255,12 @@ export default Vue.extend({
|
||||||
}).$once('closed', this.focus);
|
}).$once('closed', this.focus);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
renoteDirectly() {
|
||||||
|
(this as any).api('notes/create', {
|
||||||
|
renoteId: this.p.id
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
react(viaKeyboard = false) {
|
react(viaKeyboard = false) {
|
||||||
this.blur();
|
this.blur();
|
||||||
(this as any).os.new(MkReactionPicker, {
|
(this as any).os.new(MkReactionPicker, {
|
||||||
|
|
Loading…
Reference in New Issue