emacs: Add support for paragraph navigation (#25284)
- emacs: Added support for `alt-{` and `alt-}` paragraph navigation
This commit is contained in:
parent
ec7ce41324
commit
d8694510b5
2 changed files with 4 additions and 0 deletions
|
@ -48,6 +48,8 @@
|
||||||
"ctrl-_": "editor::Undo", // undo
|
"ctrl-_": "editor::Undo", // undo
|
||||||
"ctrl-/": "editor::Undo", // undo
|
"ctrl-/": "editor::Undo", // undo
|
||||||
"ctrl-x u": "editor::Undo", // undo
|
"ctrl-x u": "editor::Undo", // undo
|
||||||
|
"alt-{": "editor::MoveToStartOfParagraph", // backward-paragraph
|
||||||
|
"alt-}": "editor::MoveToEndOfParagraph", // forward-paragraph
|
||||||
"ctrl-v": "editor::MovePageDown", // scroll-up
|
"ctrl-v": "editor::MovePageDown", // scroll-up
|
||||||
"alt-v": "editor::MovePageUp", // scroll-down
|
"alt-v": "editor::MovePageUp", // scroll-down
|
||||||
"ctrl-x [": "editor::MoveToBeginning", // beginning-of-buffer
|
"ctrl-x [": "editor::MoveToBeginning", // beginning-of-buffer
|
||||||
|
|
|
@ -48,6 +48,8 @@
|
||||||
"ctrl-_": "editor::Undo", // undo
|
"ctrl-_": "editor::Undo", // undo
|
||||||
"ctrl-/": "editor::Undo", // undo
|
"ctrl-/": "editor::Undo", // undo
|
||||||
"ctrl-x u": "editor::Undo", // undo
|
"ctrl-x u": "editor::Undo", // undo
|
||||||
|
"alt-{": "editor::MoveToStartOfParagraph", // backward-paragraph
|
||||||
|
"alt-}": "editor::MoveToEndOfParagraph", // forward-paragraph
|
||||||
"ctrl-v": "editor::MovePageDown", // scroll-up
|
"ctrl-v": "editor::MovePageDown", // scroll-up
|
||||||
"alt-v": "editor::MovePageUp", // scroll-down
|
"alt-v": "editor::MovePageUp", // scroll-down
|
||||||
"ctrl-x [": "editor::MoveToBeginning", // beginning-of-buffer
|
"ctrl-x [": "editor::MoveToBeginning", // beginning-of-buffer
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue