2025-02-14

This commit is contained in:
2025-02-14 10:00:01 -05:00
parent ae082d5cb2
commit 8b29a4a52c
2 changed files with 3 additions and 30 deletions
+2 -29
View File
@@ -42,7 +42,6 @@
{ {
"context": "Editor", "context": "Editor",
"bindings": { "bindings": {
"ctrl-shift-s": "editor::ToggleInlineCompletions",
"escape": "editor::Cancel", "escape": "editor::Cancel",
"backspace": "editor::Backspace", "backspace": "editor::Backspace",
"shift-backspace": "editor::Backspace", "shift-backspace": "editor::Backspace",
@@ -202,20 +201,6 @@
"cmd-alt-e": "editor::SelectEnclosingSymbol" "cmd-alt-e": "editor::SelectEnclosingSymbol"
} }
}, },
{
"context": "Editor && mode == full && inline_completion",
"bindings": {
"alt-]": "editor::NextInlineCompletion",
"alt-[": "editor::PreviousInlineCompletion",
"alt-right": "editor::AcceptPartialInlineCompletion"
}
},
{
"context": "Editor && !inline_completion",
"bindings": {
"alt-\\": "editor::ShowInlineCompletion"
}
},
{ {
"context": "Editor && mode == auto_height", "context": "Editor && mode == auto_height",
"bindings": { "bindings": {
@@ -351,9 +336,7 @@
"cmd-7": ["pane::ActivateItem", 6], "cmd-7": ["pane::ActivateItem", 6],
"cmd-8": ["pane::ActivateItem", 7], "cmd-8": ["pane::ActivateItem", 7],
"cmd-9": ["pane::ActivateItem", 8], "cmd-9": ["pane::ActivateItem", 8],
"cmd-0": "pane::ActivateLastItem", "cmd-0": "pane::ActivateLastItem"
"alt-cmd-left": ["workspace::ActivatePaneInDirection", "Left"],
"alt-cmd-right": ["workspace::ActivatePaneInDirection", "Right"]
} }
}, },
// Bindings from VS Code // Bindings from VS Code
@@ -458,7 +441,6 @@
], ],
"cmd-shift-o": "file_finder::Toggle", "cmd-shift-o": "file_finder::Toggle",
"cmd-r": "task::Spawn", "cmd-r": "task::Spawn",
"alt-cmd-b": "branches::OpenRecent",
"ctrl-~": "workspace::NewTerminal", "ctrl-~": "workspace::NewTerminal",
"cmd-s": "workspace::Save", "cmd-s": "workspace::Save",
"cmd-k s": "workspace::SaveWithoutFormat", "cmd-k s": "workspace::SaveWithoutFormat",
@@ -495,14 +477,6 @@
"cmd-alt-s": "workspace::SaveAll", "cmd-alt-s": "workspace::SaveAll",
"cmd-k m": "language_selector::Toggle", "cmd-k m": "language_selector::Toggle",
"escape": "workspace::Unfollow", "escape": "workspace::Unfollow",
"cmd-k cmd-left": ["workspace::ActivatePaneInDirection", "Left"],
"cmd-k cmd-right": ["workspace::ActivatePaneInDirection", "Right"],
"cmd-k cmd-up": ["workspace::ActivatePaneInDirection", "Up"],
"cmd-k cmd-down": ["workspace::ActivatePaneInDirection", "Down"],
"cmd-k shift-left": ["workspace::SwapPaneInDirection", "Left"],
"cmd-k shift-right": ["workspace::SwapPaneInDirection", "Right"],
"cmd-k shift-up": ["workspace::SwapPaneInDirection", "Up"],
"cmd-k shift-down": ["workspace::SwapPaneInDirection", "Down"],
"cmd-shift-x": "zed::Extensions", "cmd-shift-x": "zed::Extensions",
"alt-t": "task::Rerun", "alt-t": "task::Rerun",
"alt-shift-t": "task::Spawn" "alt-shift-t": "task::Spawn"
@@ -554,7 +528,7 @@
{ {
"context": "Editor && inline_completion && !showing_completions", "context": "Editor && inline_completion && !showing_completions",
"bindings": { "bindings": {
"tab": "editor::AcceptInlineCompletion" "tab": "editor::ConfirmCompletion"
} }
}, },
{ {
@@ -710,7 +684,6 @@
{ {
"context": "Picker", "context": "Picker",
"bindings": { "bindings": {
"f2": "picker::UseSelectedQuery",
"alt-enter": [ "alt-enter": [
"picker::ConfirmInput", "picker::ConfirmInput",
{ {
+1 -1
View File
@@ -18,7 +18,7 @@
}, },
"features": { "features": {
"inline_completion_provider": "none" "edit_prediction_provider": "zed"
}, },
"collaboration_panel": { "collaboration_panel": {
"button": false "button": false