ZIm/assets/keymaps/linux
Peter Tripp 89700c3682
sublime: Don't map editor::FindNextMatch by default (#31029)
Closes: https://github.com/zed-industries/zed/issues/29535

Broken in: https://github.com/zed-industries/zed/pull/28559/files

Removes `editor::FindNextMatch` and `editor::FindPreviousMatch` from the
default sublime mappings. If you would like to use this, you will have
to add them to your user keymap. Reverts the previous behavior where
cmd-g / cmd-shift-g relies on the base keymap.

Linux:
```json
  {
    "context": "Editor && mode == full",
    "bindings": {
      "f3": "editor::FindNextMatch",
      "shift-f3": "editor::FindPreviousMatch"
    }
  }
```

MacOS:
```json
  {
    "context": "Editor && mode == full",
    "bindings": {
      "cmd-g": "editor::FindNextMatch",
      "cmd-shift-g": "editor::FindPreviousMatch"
    }
  },
```


Release Notes:

- Fixed a regression in Sublime Text keymap for find next/previous in
the search bar
2025-05-20 17:52:11 +00:00
..
atom.json keymap: Update Prev to Previous for consistency (#25909) 2025-03-03 17:44:49 +05:30
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 sublime: Don't map editor::FindNextMatch by default (#31029) 2025-05-20 17:52:11 +00:00