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>
55 lines
1.6 KiB
Markdown
55 lines
1.6 KiB
Markdown
+++
|
|
repository_url = "git@github.com:zed-industries/zed"
|
|
revision = "b7090c9fae7390a82021b994994c0f587744d96c"
|
|
+++
|
|
|
|
This example shows the model's preference for making conservative predictions, and ability to place
|
|
the cursor within the predicted output.
|
|
|
|
## Edit History
|
|
|
|
```diff
|
|
--- a/crates/edit_prediction_ui/src/rate_prediction_modal.rs
|
|
+++ b/crates/edit_prediction_ui/src/rate_prediction_modal.rs
|
|
@@ -144,7 +144,7 @@
|
|
fn select_next_edit(&mut self, _: &NextEdit, _: &mut Window, cx: &mut Context<Self>) {
|
|
+ epr
|
|
let next_index = self
|
|
.ep_store
|
|
.read(cx)
|
|
```
|
|
|
|
## Cursor Position
|
|
|
|
```crates/edit_prediction_ui/src/rate_prediction_modal.rs
|
|
fn select_next_edit(&mut self, _: &NextEdit, _: &mut Window, cx: &mut Context<Self>) {
|
|
epr
|
|
// ^[CURSOR_POSITION]
|
|
let next_index = self
|
|
.ep_store
|
|
.read(cx)
|
|
.shown_predictions()
|
|
.skip(self.selected_index)
|
|
.enumerate()
|
|
.skip(1) // Skip straight to the next item
|
|
```
|
|
|
|
## Expected Patch
|
|
|
|
```diff
|
|
--- a/crates/edit_prediction_ui/src/rate_prediction_modal.rs
|
|
+++ b/crates/edit_prediction_ui/src/rate_prediction_modal.rs
|
|
@@ -144,14 +144,14 @@
|
|
fn select_next_edit(&mut self, _: &NextEdit, _: &mut Window, cx: &mut Context<Self>) {
|
|
- epr
|
|
+ eprintln!("");
|
|
# ^[CURSOR_POSITION]
|
|
let next_index = self
|
|
.ep_store
|
|
.read(cx)
|
|
.shown_predictions()
|
|
.skip(self.selected_index)
|
|
.enumerate()
|
|
.skip(1) // Skip straight to the next item
|
|
```
|