2025-02-16

This commit is contained in:
2025-02-16 10:00:44 -05:00
parent 8b29a4a52c
commit 126b4e9cf4
2 changed files with 23 additions and 6 deletions
+17 -1
View File
@@ -201,6 +201,22 @@
"cmd-alt-e": "editor::SelectEnclosingSymbol" "cmd-alt-e": "editor::SelectEnclosingSymbol"
} }
}, },
{
"context": "Editor && mode == full && edit_prediction",
"use_key_equivalents": true,
"bindings": {
"alt-tab": "editor::NextEditPrediction",
"alt-shift-tab": "editor::PreviousEditPrediction",
"ctrl-cmd-right": "editor::AcceptPartialEditPrediction"
}
},
{
"context": "Editor && !edit_prediction",
"use_key_equivalents": true,
"bindings": {
"alt-tab": "editor::ShowEditPrediction"
}
},
{ {
"context": "Editor && mode == auto_height", "context": "Editor && mode == auto_height",
"bindings": { "bindings": {
@@ -526,7 +542,7 @@
} }
}, },
{ {
"context": "Editor && inline_completion && !showing_completions", "context": "Editor && edit_prediction && !showing_completions",
"bindings": { "bindings": {
"tab": "editor::ConfirmCompletion" "tab": "editor::ConfirmCompletion"
} }
+6 -5
View File
@@ -1,12 +1,11 @@
{ {
"icon_theme": "Catppuccin Latte", "icon_theme": "Catppuccin Latte",
"show_user_picture": false, "show_user_picture": false,
"show_inline_completions": true, "show_edit_predictions": true,
"base_keymap": "None", "base_keymap": "None",
"outline_panel": { "outline_panel": {
"dock": "right" "dock": "right"
}, },
"telemetry": { "telemetry": {
"diagnostics": true, "diagnostics": true,
"metrics": false "metrics": false
@@ -16,7 +15,9 @@
"enabled": false, "enabled": false,
"dock": "bottom" "dock": "bottom"
}, },
"edit_predictions": {
"mode": "eager_preview"
},
"features": { "features": {
"edit_prediction_provider": "zed" "edit_prediction_provider": "zed"
}, },
@@ -68,10 +69,10 @@
}, },
"languages": { "languages": {
"JSONC": { "JSONC": {
"show_inline_completions": false "show_edit_predictions": false
}, },
"Markdown": { "Markdown": {
"show_inline_completions": false "show_edit_predictions": false
}, },
"Go": { "Go": {
"tab_size": 2 "tab_size": 2