ZIm/assets/keymaps/linux
Fernando Carletti 58a400b1ee
keymap: Fix subword navigation and selection on Sublime Text keymap (#31840)
On Linux, the correct modifier key for this action is `alt`, not `ctrl`.
I mistakenly set it to `ctrl` on #30268.

From Sublime's keymap: 
```json
{ "keys": ["ctrl+left"], "command": "move", "args": {"by": "words", "forward": false} },
{ "keys": ["ctrl+right"], "command": "move", "args": {"by": "word_ends", "forward": true} },
{ "keys": ["ctrl+shift+left"], "command": "move", "args": {"by": "words", "forward": false, "extend": true} },
{ "keys": ["ctrl+shift+right"], "command": "move", "args": {"by": "word_ends", "forward": true, "extend": true} },

{ "keys": ["alt+left"], "command": "move", "args": {"by": "subwords", "forward": false} },
{ "keys": ["alt+right"], "command": "move", "args": {"by": "subword_ends", "forward": true} },
{ "keys": ["alt+shift+left"], "command": "move", "args": {"by": "subwords", "forward": false, "extend": true} },
{ "keys": ["alt+shift+right"], "command": "move", "args": {"by": "subword_ends", "forward": true, "extend": true} },
```

Release Notes:

- N/A
2025-06-02 21:22:27 -06:00
..
atom.json keymap: Update Prev to Previous for consistency (#25909) 2025-03-03 17:44:49 +05:30
cursor.json Cursor keymap (#31702) 2025-05-29 15:20:58 -04:00
emacs.json Ctrl/Alt-V to select by page in Emacs keymap (#30858) 2025-05-19 13:19:36 -04:00
jetbrains.json Add toggle case command (#28415) 2025-04-09 08:44:53 -04:00
sublime_text.json keymap: Fix subword navigation and selection on Sublime Text keymap (#31840) 2025-06-02 21:22:27 -06:00