logiguard fork v3: full patch set on verified 8c74db0 tree
Includes prior-session patches (carry forward so the app compiles): - crates/gpui/build.rs: cross-compile manifest fix - crates/gpui/src/platform.rs: PlatformWindow::activate_with_token trait method - crates/gpui/src/window.rs: Window::activate_with_token public API - crates/gpui_linux/src/linux/wayland/window.rs: WaylandWindow::activate_with_token + activate() keyboard-serial fix Plus the focus-serial fix: - serial.rs: SerialKind::KeyboardEnter - client.rs: store wl_keyboard.enter serial; latest_serial_of() Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
68
crates/edit_prediction_cli/evals/zed--change-match-arm.md
Normal file
68
crates/edit_prediction_cli/evals/zed--change-match-arm.md
Normal file
@@ -0,0 +1,68 @@
|
||||
+++
|
||||
repository_url = "git@github.com:zed-industries/zed"
|
||||
revision = "be5763632dccb33470ca233c36ccd9e5e790e3b2"
|
||||
+++
|
||||
|
||||
This prediction requires the model to see the `project::Event` enum.
|
||||
|
||||
## Edit History
|
||||
|
||||
```diff
|
||||
--- a/crates/edit_prediction/src/edit_prediction.rs
|
||||
+++ b/crates/edit_prediction/src/edit_prediction.rs
|
||||
@@ -1035,7 +1035,7 @@
|
||||
project_state.recent_paths.push_front(path);
|
||||
}
|
||||
}
|
||||
- project::Event::DiagnosticsUpdated { .. } => {
|
||||
+ project::Event::Disk { .. } => {
|
||||
if cx.has_flag::<EditPredictionJumpsFeatureFlag>() {
|
||||
self.refresh_prediction_from_diagnostics(
|
||||
project,
|
||||
```
|
||||
|
||||
## Cursor Position
|
||||
|
||||
```crates/edit_prediction/src/edit_prediction.rs
|
||||
{
|
||||
project_state.recent_paths.remove(ix);
|
||||
}
|
||||
project_state.recent_paths.push_front(path);
|
||||
}
|
||||
}
|
||||
project::Event::Disk { .. } => {
|
||||
// ^[CURSOR_POSITION]
|
||||
if cx.has_flag::<EditPredictionJumpsFeatureFlag>() {
|
||||
self.refresh_prediction_from_diagnostics(
|
||||
project,
|
||||
```
|
||||
|
||||
## Expected Patch
|
||||
|
||||
```diff
|
||||
--- a/crates/edit_prediction/src/edit_prediction.rs
|
||||
+++ b/crates/edit_prediction/src/edit_prediction.rs
|
||||
@@ -1032,10 +1032,10 @@
|
||||
project_state.recent_paths.push_front(path);
|
||||
}
|
||||
}
|
||||
- project::Event::Disk { .. } => {
|
||||
+ project::Event::DiskBasedDiagnosticsFinished { .. } => {
|
||||
if cx.has_flag::<EditPredictionJumpsFeatureFlag>() {
|
||||
self.refresh_prediction_from_diagnostics(
|
||||
project,
|
||||
```
|
||||
|
||||
```diff
|
||||
--- a/crates/edit_prediction/src/edit_prediction.rs
|
||||
+++ b/crates/edit_prediction/src/edit_prediction.rs
|
||||
@@ -1032,10 +1032,10 @@
|
||||
project_state.recent_paths.push_front(path);
|
||||
}
|
||||
}
|
||||
- project::Event::Disk { .. } => {
|
||||
+ project::Event::DiskBasedDiagnosticsStarted { .. } => {
|
||||
if cx.has_flag::<EditPredictionJumpsFeatureFlag>() {
|
||||
self.refresh_prediction_from_diagnostics(
|
||||
project,
|
||||
```
|
||||
Reference in New Issue
Block a user