feat: mod+a to select parent up to the whole page (#7803)

mod+a to select parent up to the whole page
This commit is contained in:
Tienson Qin
2022-12-29 22:29:26 +08:00
committed by GitHub
parent 755aeb5d22
commit 1206d54c86
4 changed files with 57 additions and 7 deletions

View File

@@ -241,6 +241,9 @@
:editor/select-all-blocks {:binding "mod+shift+a"
:fn editor-handler/select-all-blocks!}
:editor/select-parent {:binding "mod+a"
:fn editor-handler/select-parent}
:editor/zoom-in {:binding (if mac? "mod+." "alt+right")
:fn editor-handler/zoom-in!}
@@ -518,6 +521,7 @@
:editor/open-edit
:editor/select-block-up
:editor/select-block-down
:editor/select-parent
:editor/delete-selection
:editor/expand-block-children
:editor/collapse-block-children
@@ -601,6 +605,7 @@
:editor/indent
:editor/outdent
:editor/select-all-blocks
:editor/select-parent
:go/search
:go/search-in-page
:go/electron-find-in-page
@@ -678,6 +683,7 @@
:shortcut.category/block-selection
[:editor/open-edit
:editor/select-all-blocks
:editor/select-parent
:editor/select-block-up
:editor/select-block-down
:editor/delete-selection]