Skip to content

Commit 3daf28e

Browse files
authored
Merge branch 'zed-industries:main' into feature/js-ts-inline-values
2 parents b59f4c2 + 96a0db2 commit 3daf28e

File tree

129 files changed

+3876
-2768
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+3876
-2768
lines changed

.github/ISSUE_TEMPLATE/11_crash_report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ body:
3333
required: true
3434
- type: textarea
3535
attributes:
36-
label: If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue.
36+
label: If applicable, attach your `Zed.log` file to this issue.
3737
description: |
3838
macOS: `~/Library/Logs/Zed/Zed.log`
39+
Windows: `C:\Users\YOU\AppData\Local\Zed\logs\Zed.log`
3940
Linux: `~/.local/share/zed/logs/Zed.log` or $XDG_DATA_HOME
4041
If you only need the most recent lines, you can run the `zed: open log` command palette action to see the last 1000.
4142
value: |

Cargo.lock

Lines changed: 26 additions & 54 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ members = [
126126
"crates/picker",
127127
"crates/prettier",
128128
"crates/project",
129-
"crates/project_benchmarks",
130129
"crates/project_panel",
131130
"crates/project_symbols",
132131
"crates/prompt_store",
@@ -195,7 +194,6 @@ members = [
195194
"crates/web_search_providers",
196195
"crates/workspace",
197196
"crates/worktree",
198-
"crates/worktree_benchmarks",
199197
"crates/x_ai",
200198
"crates/zed",
201199
"crates/zed_actions",
@@ -454,7 +452,8 @@ async-fs = "2.1"
454452
async-lock = "2.1"
455453
async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "82d00a04211cf4e1236029aa03e6b6ce2a74c553" }
456454
async-recursion = "1.0.0"
457-
async-tar = "0.5.0"
455+
# WARNING: If you change this, you must also publish a new version of zed-async-tar to crates.io
456+
async-tar = { git = "https://github.com/zed-industries/async-tar", rev = "a307f6bf3e4219c3a457bea0cab198b6d7c36e25", package = "zed-async-tar", version = "0.5.0-zed" }
458457
async-task = "4.7"
459458
async-trait = "0.1"
460459
async-tungstenite = "0.31.0"
@@ -902,4 +901,5 @@ ignored = [
902901
"serde",
903902
"component",
904903
"documented",
904+
"sea-orm-macros",
905905
]

assets/keymaps/default-linux.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
"find": "buffer_search::Deploy",
140140
"ctrl-f": "buffer_search::Deploy",
141141
"ctrl-h": "buffer_search::DeployReplace",
142-
"ctrl->": "agent::QuoteSelection",
142+
"ctrl->": "agent::AddSelectionToThread",
143143
"ctrl-<": "assistant::InsertIntoEditor",
144144
"ctrl-alt-e": "editor::SelectEnclosingSymbol",
145145
"ctrl-shift-backspace": "editor::GoToPreviousChange",
@@ -243,7 +243,7 @@
243243
"ctrl-shift-i": "agent::ToggleOptionsMenu",
244244
"ctrl-alt-shift-n": "agent::ToggleNewThreadMenu",
245245
"shift-alt-escape": "agent::ExpandMessageEditor",
246-
"ctrl->": "agent::QuoteSelection",
246+
"ctrl->": "agent::AddSelectionToThread",
247247
"ctrl-alt-e": "agent::RemoveAllContext",
248248
"ctrl-shift-e": "project_panel::ToggleFocus",
249249
"ctrl-shift-enter": "agent::ContinueThread",
@@ -539,7 +539,7 @@
539539
"ctrl-k ctrl-0": "editor::FoldAll",
540540
"ctrl-k ctrl-j": "editor::UnfoldAll",
541541
"ctrl-space": "editor::ShowCompletions",
542-
"ctrl-shift-space": "editor::ShowSignatureHelp",
542+
"ctrl-shift-space": "editor::ShowWordCompletions",
543543
"ctrl-.": "editor::ToggleCodeActions",
544544
"ctrl-k r": "editor::RevealInFileManager",
545545
"ctrl-k p": "editor::CopyPath",
@@ -799,7 +799,7 @@
799799
"ctrl-shift-e": "pane::RevealInProjectPanel",
800800
"ctrl-f8": "editor::GoToHunk",
801801
"ctrl-shift-f8": "editor::GoToPreviousHunk",
802-
"ctrl-i": "assistant::InlineAssist",
802+
"ctrl-enter": "assistant::InlineAssist",
803803
"ctrl-:": "editor::ToggleInlayHints"
804804
}
805805
},
@@ -1094,7 +1094,7 @@
10941094
"paste": "terminal::Paste",
10951095
"shift-insert": "terminal::Paste",
10961096
"ctrl-shift-v": "terminal::Paste",
1097-
"ctrl-i": "assistant::InlineAssist",
1097+
"ctrl-enter": "assistant::InlineAssist",
10981098
"alt-b": ["terminal::SendText", "\u001bb"],
10991099
"alt-f": ["terminal::SendText", "\u001bf"],
11001100
"alt-.": ["terminal::SendText", "\u001b."],

0 commit comments

Comments
 (0)