mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
keymaps: Update no action bindings to null (#54506)
Update uses of `zed::NoAction` in default keymaps with `null` seeing as `zed::NoAction` is being deprecated. Self-Review Checklist: - [x] I've reviewed my own diff for quality, security, and reliability - [x] Unsafe blocks (if any) have justifying comments - [x] The content is consistent with the [UI/UX checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) - [x] Tests cover the new/changed behavior - [x] Performance impact has been considered and is acceptable Release Notes: - N/A
This commit is contained in:
parent
df905d3893
commit
c5354fe056
3 changed files with 9 additions and 3 deletions
|
|
@ -748,7 +748,9 @@
|
|||
{
|
||||
"context": "Workspace && debugger_running",
|
||||
"bindings": {
|
||||
"f5": "zed::NoAction",
|
||||
// Unbind `f5` to avoid dispatching the `debugger::Rerun` as that is what `f5` is bound to in the `Workspace`
|
||||
// context.
|
||||
"f5": null,
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -805,7 +805,9 @@
|
|||
"context": "Workspace && debugger_running",
|
||||
"use_key_equivalents": true,
|
||||
"bindings": {
|
||||
"f5": "zed::NoAction",
|
||||
// Unbind `f5` to avoid dispatching the `debugger::Rerun` as that is what `f5` is bound to in the `Workspace`
|
||||
// context.
|
||||
"f5": null,
|
||||
"f11": "debugger::StepInto",
|
||||
},
|
||||
},
|
||||
|
|
|
|||
|
|
@ -706,7 +706,9 @@
|
|||
"context": "Workspace && debugger_running",
|
||||
"use_key_equivalents": true,
|
||||
"bindings": {
|
||||
"f5": "zed::NoAction",
|
||||
// Unbind `f5` to avoid dispatching the `debugger::Rerun` as that is what `f5` is bound to in the `Workspace`
|
||||
// context.
|
||||
"f5": null,
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue