Add editor::Rewrap
binding to Emacs keymaps (#33588)
`M-q` is `fill-paragraph` which is like `editor::Rewrap`. Release Notes: - emacs: Bound `alt-q` to `editor::Rewrap` (like `M-q` or `M-x fill-paragraph`)
This commit is contained in:
parent
c8c6468f9c
commit
521a223681
2 changed files with 4 additions and 2 deletions
|
@ -59,7 +59,8 @@
|
||||||
"alt->": "editor::MoveToEnd", // end-of-buffer
|
"alt->": "editor::MoveToEnd", // end-of-buffer
|
||||||
"ctrl-l": "editor::ScrollCursorCenterTopBottom", // recenter-top-bottom
|
"ctrl-l": "editor::ScrollCursorCenterTopBottom", // recenter-top-bottom
|
||||||
"ctrl-s": "buffer_search::Deploy", // isearch-forward
|
"ctrl-s": "buffer_search::Deploy", // isearch-forward
|
||||||
"alt-^": "editor::JoinLines" // join-line
|
"alt-^": "editor::JoinLines", // join-line
|
||||||
|
"alt-q": "editor::Rewrap" // fill-paragraph
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -59,7 +59,8 @@
|
||||||
"alt->": "editor::MoveToEnd", // end-of-buffer
|
"alt->": "editor::MoveToEnd", // end-of-buffer
|
||||||
"ctrl-l": "editor::ScrollCursorCenterTopBottom", // recenter-top-bottom
|
"ctrl-l": "editor::ScrollCursorCenterTopBottom", // recenter-top-bottom
|
||||||
"ctrl-s": "buffer_search::Deploy", // isearch-forward
|
"ctrl-s": "buffer_search::Deploy", // isearch-forward
|
||||||
"alt-^": "editor::JoinLines" // join-line
|
"alt-^": "editor::JoinLines", // join-line
|
||||||
|
"alt-q": "editor::Rewrap" // fill-paragraph
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue