1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

macOS: Added Cmd+Backspace shortcut to delete line (#5478)

This commit is contained in:
Helmut K. C. Tessarek 2021-09-19 06:32:58 -04:00 committed by GitHub
parent afe1cf747d
commit 12ec7b0c1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -171,6 +171,7 @@ export default function useKeymap(CodeMirror: any) {
'Cmd-Right': 'goLineRightSmart',
'Alt-Backspace': 'delGroupBefore',
'Alt-Delete': 'delGroupAfter',
'Cmd-Backspace': 'delWrappedLineLeft',
'fallthrough': 'basic',
};