macos: Add default keybind for ctrl-home / ctrl-end (#21007)

Peter Tripp created

This matches the default behavior on native macos apps.
ctrl-fn-left == ctrl-home == MoveToBeginning
ctrl-fn-right == ctrl-end == MoveToEnd

Change summary

assets/keymaps/default-macos.json | 2 ++
1 file changed, 2 insertions(+)

Detailed changes

assets/keymaps/default-macos.json 🔗

@@ -93,6 +93,8 @@
       "ctrl-e": "editor::MoveToEndOfLine",
       "cmd-up": "editor::MoveToBeginning",
       "cmd-down": "editor::MoveToEnd",
+      "ctrl-home": "editor::MoveToBeginning",
+      "ctrl-end": "editor::MoveToEnd",
       "shift-up": "editor::SelectUp",
       "ctrl-shift-p": "editor::SelectUp",
       "shift-down": "editor::SelectDown",