ZIm/assets/keymaps
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
..
linux keymap: Fix subword navigation and selection on Sublime Text keymap (#31840) 2025-06-02 21:22:27 -06:00
macos keymap: Add subword navigation and selection to Sublime Text keymap (#30268) 2025-05-30 20:38:21 +00:00
default-linux.json debugger: Align zoom behavior with other panels (#31901) 2025-06-03 00:59:36 +00:00
default-macos.json debugger: Align zoom behavior with other panels (#31901) 2025-06-03 00:59:36 +00:00
initial.json Use lowercase command names in initial settings files (#15717) 2024-08-03 09:35:09 -04:00
storybook.json keymap: Update Prev to Previous for consistency (#25909) 2025-03-03 17:44:49 +05:30
vim.json agent: Support vim-mode in the agent panel's editor (#31915) 2025-06-02 22:10:31 +03:00