mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 20:38:55 +03:00
Ignore cursor jumping shortcuts with shift
This tweaks the new cursor jumping shortcuts in the composer so that they only activate without shift. When shift _is_ pressed, you want to extend the selection instead of just moving. Fixes https://github.com/vector-im/riot-web/issues/12549
This commit is contained in:
parent
d07d7d188f
commit
95bb6f0d76
1 changed files with 2 additions and 2 deletions
|
@ -393,14 +393,14 @@ export default class BasicMessageEditor extends React.Component {
|
||||||
this._insertText("\n");
|
this._insertText("\n");
|
||||||
handled = true;
|
handled = true;
|
||||||
// move selection to start of composer
|
// move selection to start of composer
|
||||||
} else if (modKey && event.key === Key.HOME) {
|
} else if (modKey && event.key === Key.HOME && !event.shiftKey) {
|
||||||
setSelection(this._editorRef, model, {
|
setSelection(this._editorRef, model, {
|
||||||
index: 0,
|
index: 0,
|
||||||
offset: 0,
|
offset: 0,
|
||||||
});
|
});
|
||||||
handled = true;
|
handled = true;
|
||||||
// move selection to end of composer
|
// move selection to end of composer
|
||||||
} else if (modKey && event.key === Key.END) {
|
} else if (modKey && event.key === Key.END && !event.shiftKey) {
|
||||||
setSelection(this._editorRef, model, {
|
setSelection(this._editorRef, model, {
|
||||||
index: model.parts.length - 1,
|
index: model.parts.length - 1,
|
||||||
offset: model.parts[model.parts.length - 1].text.length,
|
offset: model.parts[model.parts.length - 1].text.length,
|
||||||
|
|
Loading…
Reference in a new issue