support alt+enter on mac, like slate composer
This commit is contained in:
parent
9003a8836a
commit
ea1faacd8b
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ export default class BasicMessageEditor extends React.Component {
|
|||
}
|
||||
handled = true;
|
||||
// insert newline on Shift+Enter
|
||||
} else if (event.shiftKey && event.key === "Enter") {
|
||||
} else if (event.key === "Enter" && (event.shiftKey || (IS_MAC && event.altKey))) {
|
||||
this._insertText("\n");
|
||||
handled = true;
|
||||
// autocomplete or enter to send below shouldn't have any modifier keys pressed.
|
||||
|
|
Loading…
Reference in a new issue