a664c5d
zed 0.178.2
Joseph T. Lyons created
a664c5d
zed 0.178.2
Joseph T. Lyons created
6793a27
Show git toasts for 10s (cherry-pick #26714) (#26755)
Cherry-picked Show git toasts for 10s (#26714) Release Notes: - N/A Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
gcp-cherry-pick-bot[bot] and Conrad Irwin created
2497ede
Revert "Disable automatic window tabbing (cherry-pick #26600) (#26652)" (cherry-pick #26749) (#26752)
Cherry-picked Revert "Disable automatic window tabbing (cherry-pick #26600) (#26652)" (#26749) This reverts commit 391eb380b59d5b36efdea027bfdb2fc4f55f4ad0. For some reason that is very unclear to me, this broke ssh'ing into macOS remotes. The remote process aborts with: ``` ------------------------------------- Translated Report (Full Report Below) ------------------------------------- Process: zed-remote-server-dev-build [78088] Path: /Users/USER/*/zed-remote-server-dev-build Identifier: zed-remote-server-dev-build Version: ??? Code Type: ARM-64 (Native) Parent Process: launchd [1] Responsible: iTerm2 [62245] User ID: 501 Date/Time: 2025-03-13 19:30:37.6827 -0600 OS Version: macOS 15.3.1 (24D70) Report Version: 12 Anonymous UUID: 3A9631EB-5468-8CA4-7A0F-E36C3FF9D04F Sleep/Wake UUID: C935AE4C-E06A-4F6D-BE97-101E4E03482F Time Awake Since Boot: 910000 seconds Time Since Wake: 1265 seconds System Integrity Protection: enabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Termination Reason: Namespace OBJC, Code 1 Application Specific Information: crashed on child side of fork pre-exec Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x18653fc6c __abort_with_payload + 8 1 libsystem_kernel.dylib 0x186565eb8 abort_with_payload_wrapper_internal + 104 2 libsystem_kernel.dylib 0x186565e50 abort_with_reason + 32 3 libobjc.A.dylib 0x1861dc040 _objc_fatalv(unsigned long long, unsigned long long, char const*, char*) + 128 4 libobjc.A.dylib 0x1861dbfc0 _objc_fatal(char const*, ...) + 44 5 libobjc.A.dylib 0x1861c1674 performForkChildInitialize(objc_class*, objc_class*) + 400 6 libobjc.A.dylib 0x1861a67f0 initializeNonMetaClass + 592 7 libobjc.A.dylib 0x1861c4a3c initializeAndMaybeRelock(objc_class*, objc_object*, locker_mixin<lockdebug::lock_mixin<objc_lock_base_t>>&, bool) + 164 8 libobjc.A.dylib 0x1861a5f98 lookUpImpOrForward + 304 9 libobjc.A.dylib 0x1861a5b84 _objc_msgSend_uncached + 68 10 zed-remote-server-dev-build 0x104f9ec4c _$LT$$LP$$RP$$u20$as$u20$objc..message..MessageArguments$GT$::invoke::hf68c58806f4b5702 + 56 11 zed-remote-server-dev-build 0x104f9d4c8 objc::message::platform::send_unverified::h2ec8392957fd6551 + 120 12 zed-remote-server-dev-build 0x104e5631c cocoa::appkit::NSPasteboard::generalPasteboard::h68122d7f32549cba + 512 13 zed-remote-server-dev-build 0x104e3b3b4 gpui::platform::mac::platform::MacPlatform::new::hb68d7ae2c5fdea7e + 336 14 zed-remote-server-dev-build 0x104e48008 gpui::platform::current_platform::h931999673c8c6468 + 28 15 zed-remote-server-dev-build 0x104ee4284 gpui::app::Application::headless::h3bffec62c65240ce + 32 16 zed-remote-server-dev-build 0x1023746ac remote_server::unix::execute_run::h7ac8de1a7e257f61 + 1200 17 zed-remote-server-dev-build 0x102368e1c remote_server::main::h42e4b18462b32dcf + 252 (main.rs:56) 18 zed-remote-server-dev-build 0x10236717c core::ops::function::FnOnce::call_once::h8534244cea12c898 + 16 (function.rs:250) 19 zed-remote-server-dev-build 0x102368154 std::sys::backtrace::__rust_begin_short_backtrace::h22fd48e0f46eb10b + 12 (backtrace.rs:152) 20 zed-remote-server-dev-build 0x10236bf74 std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::hf8bd0081bf8d785b + 16 (rt.rs:195) 21 zed-remote-server-dev-build 0x105723d20 std::rt::lang_start_internal::h5f91760815528aa2 + 1092 22 zed-remote-server-dev-build 0x10236bf50 std::rt::lang_start::hb88fe48ac1498ea6 + 60 (rt.rs:194) 23 zed-remote-server-dev-build 0x10236b67c main + 36 24 dyld 0x1861f4274 start + 2840 ``` Which is not even (apparently) on the line that calls this function. To reproduce this, run `ZED_BUILD_REMOTE_SERVER=true cargo run ssh://127.0.0.1/~/`. Release Notes: - N/A Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
gcp-cherry-pick-bot[bot] and Conrad Irwin created
1c60088
terminal: Fix issues with highlighted ranges of paths (cherry-pick #26695) (#26697)
Cherry-picked terminal: Fix issues with highlighted ranges of paths (#26695) Fixes a few problems, - Uses `Boundary::Grid` instead of `Boundary::Cursor` for highlighted range adjustments. This fixes quite a few wierd behaviors around highlighting paths that had to be scrolled into view (i.e. were in the terminal history) including the issue described in the release notes as well as a regression caused by #26401 where the highlight range would span from the start of the path to the cursor location in the shell prompt - Strips all trailing `:`s from the paths, updating the highlighted range accordingly. This worked fine before and is just a visual improvement. Release Notes: - Fixed an issue where file paths in the terminal surrounded by `()` or `[]` would not be highlighted properly Co-authored-by: Ben Kunkle <ben@zed.dev>
gcp-cherry-pick-bot[bot] and Ben Kunkle created
d4062a8
Allow parsing commits when we can't resolve the permalink (cherry-pick #26709) (#26736)
Cherry-picked Allow parsing commits when we can't resolve the permalink (#26709) Closes #26577 Release Notes: - git: Fix showing commit messages for all repos Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
gcp-cherry-pick-bot[bot] and Conrad Irwin created
fe46a11
worktree: Disable flaky `test_file_status` test (#26729)
See also: - https://github.com/zed-industries/zed/pull/26684 - https://github.com/zed-industries/zed/pull/26710 Release Notes: - N/A
Cole Miller created
8d2843c
Don't render "Initialize Repository" button when no worktrees (cherry-pick #26713) (#26728)
Cherry-picked Don't render "Initialize Repository" button when no worktrees (#26713) Closes #26676 Release Notes: - Fixed the git panel to not show an "Initialize Repositories" button in empty projects Co-authored-by: Cole Miller <cole@zed.dev>
gcp-cherry-pick-bot[bot] and Cole Miller created
ee65485
Fix flicker when reverting last hunk from the project diff view (cherry-pick #26706) (#26712)
Cherry-picked Fix flicker when reverting last hunk from the project diff view (#26706) Closes #26696 Closes #ISSUE Release Notes: - git: Fix flicker when reverting last hunk in project diff view Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
gcp-cherry-pick-bot[bot] and Conrad Irwin created
d035440
Use system git for committing (cherry-pick #26705) (#26726)
Cherry-picked Use system git for committing (#26705) Closes #26472 Release Notes: - On macOS, switched to using the system's git binary to create commits. This fixes issues that some users were seeing with pre-commit hooks. Compatibility note: after this change, it is no longer possible to commit from Zed unless git is installed. Co-authored-by: Cole Miller <cole@zed.dev>
gcp-cherry-pick-bot[bot] and Cole Miller created
d7c5808
git: Fix race condition when [un]staging hunks in quick succession (cherry-pick #26422) (#26719)
Cherry-picked git: Fix race condition when [un]staging hunks in quick
succession (#26422)
- [x] Fix `[un]stage` hunk operations cancelling pending ones
- [x] Add test
- [ ] bugs I stumbled upon (try to repro again before merging)
- [x] holding `git::StageAndNext` skips hunks randomly
- [x] Add test
- [x] restoring a file keeps it in the git panel
- [x] Double clicking on `toggle staged` fast makes Zed disagree with
`git` CLI
- [x] checkbox shows :heavy_check_mark: (fully staged) after a single
stage
Release Notes:
- N/A
---------
Co-authored-by: João Marcos <marcospb19@hotmail.com>
Co-authored-by: Cole <cole@zed.dev>
Co-authored-by: Max <max@zed.dev>
gcp-cherry-pick-bot[bot] , João Marcos , Cole , and Max created
7dd9bab
worktree: Disable flaky tests (test_write_file, test_git_status_postprocessing) (#26710)
Comment out flaky tests: - `worktree_tests::test_write_file` - `worktree_tests::test_git_status_postprocessing` Job links: - windows fail: https://github.com/zed-industries/zed/actions/runs/13841766606/job/38730766252 - macos fail: https://github.com/zed-industries/zed/actions/runs/13841766606/job/38730764118 That [commit](https://github.com/zed-industries/zed/commit/85384fb9c67614795a82f5b0a09895875beb16d0) was a non-op script change, but in the [prior commit](https://github.com/zed-industries/zed/commit/00359271d11b6ba865fe81f04f675bf588a17335) [windows/macos pass](https://github.com/zed-industries/zed/actions/runs/13841135221). Similar experience with `worktree_tests::test_write_file` on both macOS windows too. - See also: https://github.com/zed-industries/zed/pull/26684 Release Notes: - N/A
Peter Tripp created
73640a4
ci: Fix 'Run Tests' not always running (#26685)
Follow up to: - https://github.com/zed-industries/zed/pull/26551 We need the "Tests Pass" step to run `if: always()`. Turns out when it's 'skipped', it counts as 'passing' with respect to required status checks. Release Notes: - N/A
Peter Tripp created
52a854b
ci: Use smaller windows runners (#26674)
Let's see if the speed of `windows-2025-32` for `windows_tests` is fast-enough for PRs and everywhere else use `windows-2025-16`. Leaving `windows_clippy` unchanged with `windows-2025-16`. Release Notes: - N/A
Peter Tripp created
c26e354
Fix being unable to put a cursor after trailing deletion hunks (cherry-pick #26621) (#26698)
Cherry-picked Fix being unable to put a cursor after trailing deletion hunks (#26621) Closes #26541 Release Notes: - Fixed a bug that prevented putting the cursor after a deletion hunk at the end of a file, in the absence of trailing newlines --------- Co-authored-by: Max <max@zed.dev> Co-authored-by: Cole Miller <cole@zed.dev> Co-authored-by: Max <max@zed.dev>
gcp-cherry-pick-bot[bot] , Cole Miller , and Max created
5f08775
worktree: Disable flaky `test_git_repository_status` test (#26684)
This PR disables the flaky `test_git_repository_status` test. Release Notes: - N/A
Marshall Bowers created
ab04489
zed 0.178.1
Joseph T. Lyons created
20456e0
theme: Fix incorrect version control keys in One themes (cherry-pick #26606) (#26624)
Cherry-picked theme: Fix incorrect version control keys in One themes
(#26606)
While the `.{variants}` of the theme keys _were_ incorrect, they are
actually more consistent with our current theme keys (thanks AI!) So we
will keep theme, and fix the incorrect usages in the one themes and
elsewhere.
Old description:
>
> This PR fixes an issue where we specified the incorrect theme keys
(thanks AI!) > in the theme schema. The following keys have been changed
to their correct > versions:
>
> | Before | After |
> |-------------------------------|-------------------------|
> | version_control.added | version_control_added |
> | version_control.deleted | version_control_deleted |
> | version_control.modified | version_control_modified|
> | version_control.renamed | version_control_renamed |
> | version_control.conflict | version_control_conflict|
> | version_control.ignored | version_control_ignored |
>
> Please use the after versions in your themes, as they are correct!
>
> We won't be adding secondary keys to fix this automatically as git
only > officially launched today.
>
> Due to this change, we've also updated the version control keys in the
One > themes to keep the default diff hunks looks from changing.
Closes #26572
Release Notes:
- theme: Fixed an issue where version control colors weren't applying
correctly.
Co-authored-by: Nate Butler <iamnbutler@gmail.com>
gcp-cherry-pick-bot[bot] and Nate Butler created
01f39e9
gruvbox: `version_control_` -> `version_control.` (#26665)
Missed this in PR #26606 Before:  After:  Release Notes: - theme: Fixed an issue where version control colors weren't applying correctly. (again)
Nate Butler created
391eb38
Disable automatic window tabbing (cherry-pick #26600) (#26652)
Cherry-picked macOS: Disable automatic window tabbing in fullscreen mode (#26600) Fixes #26534 (this time for real) Release Notes: - Fixed issue where Zed would behave weirdly when opening new fullscreen windows by disabling window tabbing Apple docs: https://developer.apple.com/documentation/appkit/nswindow/allowsautomaticwindowtabbing Co-authored-by: Stanislav Alekseev <43210583+WeetHet@users.noreply.github.com>
gcp-cherry-pick-bot[bot] and Stanislav Alekseev created
cdfa3dd
Properly handle goto single file worktrees during terminal cmd-clicks (cherry-pick #26582) (#26651)
Cherry-picked Properly handle goto single file worktrees during terminal cmd-clicks (#26582) Closes https://github.com/zed-industries/zed/issues/26431 Follow-up of https://github.com/zed-industries/zed/pull/26174 `path_with_position.path.strip_prefix(&worktree_root)` used in the PR is wrong for cases of single-file worktrees, where it will return empty paths that will result in incorrect project and FS entries accessed. Release Notes: - Fixed goto single file worktrees during terminal cmd-clicks Co-authored-by: Kirill Bulatov <kirill@zed.dev>
gcp-cherry-pick-bot[bot] and Kirill Bulatov created
7364f81
Improve terminal hover tooltips (cherry-pick #26487) (#26650)
Cherry-picked Improve terminal hover tooltips (#26487) Follow-up of https://github.com/zed-industries/zed/pull/26174 * Fixes `./path/foo.bar` not properly parsed as valid open target * Shows full open target's path in cmd-hover tooltips Before: <img width="864" alt="before_1" src="https://github.com/user-attachments/assets/2575b887-6c4d-486e-8e92-dd76aedf8103" /> <img width="864" alt="before_2" src="https://github.com/user-attachments/assets/ded1f203-523c-4b75-afe9-fe541c785798" /> After: <img width="864" alt="after_1" src="https://github.com/user-attachments/assets/c50d9ba3-5dfb-4cfb-aed6-00e6fa6f088e" /> <img width="864" alt="after_2" src="https://github.com/user-attachments/assets/0cdc8f34-7faa-4aab-87f3-dc0c8b499842" /> Release Notes: - N/A Co-authored-by: Kirill Bulatov <kirill@zed.dev>
gcp-cherry-pick-bot[bot] and Kirill Bulatov created
44447e2
Rename the editor::ToggleGitBlame action to git::Blame (#26565)
Release Notes: - Git Beta: Renamed `editor::ToggleGitBlame` to `git::Blame` Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com> Co-authored-by: Cole Miller <m@cole-miller.net> Co-authored-by: Nathan Sobo <nathan@zed.dev> Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com>
Mikayla Maki , Conrad Irwin , Cole Miller , Nathan Sobo , and Max Brunsfeld created
fc76d08
Fix overflow in create branch label (#26591)
Closes #ISSUE Release Notes: - N/A
Conrad Irwin created
be0595a
ci: Fix tests not-running on main (#26613)
Follow-up to #26551 Fix for tests being skipped on main. Also fetch less history: [example run](https://github.com/zed-industries/zed/actions/runs/13822318758/job/38670334893) Release Notes: - N/A
Peter Tripp created
1b6421b
Fix a bug where the modal layer could not be dismissed by the mouse
Mikayla Maki created
cb675c7
ci: GitHub actions refactor (#26551)
Refactor GitHub actions CI workflow. - Single combined 'tests_pass' action so we only need one mandatory check for merge queue - Add new `job_spec` job which determines what needs to be run (+5secs) - Do not run full CI for docs only changes (~30secs vs 10+mins) - Only run `script/generate-licenses` if Cargo.lock changed (saves ~23secs on mac_test) - Move prettier /docs check to ci.yml and remove docs.yml - Run Windows tests on every PR commit - Added new Windows runners named to reflect their OS/capacity (windows-2025-64, windows-2025-32, windows-2025-16) Release Notes: - N/A
Peter Tripp created
209f1da
git: Hard wrap in editor (cherry-pick #26507) (#26589)
Cherry-picked git: Hard wrap in editor (#26507) This adds the ability for the editor to implement hard wrap (similar to "textwidth" in vim). If you are typing and your line extends beyond the limit, a newline is inserted before the most recent space on the line. If you are otherwise editing the line, pasting, etc. then you will need to manually rewrap. Release Notes: - git: Commit messages are now wrapped "as you type" to 72 characters. Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
gcp-cherry-pick-bot[bot] and Conrad Irwin created
96e1eed
Fix message on push (cherry-pick #26588) (#26595)
Cherry-picked Fix message on push (#26588) Instead of saying "Successfully pushed new branch" we say "Pushed x to y" Release Notes: - N/A Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
gcp-cherry-pick-bot[bot] and Conrad Irwin created
4994b02
Git on main thread (cherry-pick #26573) (#26586)
Cherry-picked Git on main thread (#26573) This moves spawning of the git subprocess to the main thread. We're not yet sure why, but when we spawn a process using GCD's background queues, sub-processes like git-credential-manager fail to open windows. This seems to be fixable either by using the main thread, or by using a standard background thread, but for now we use the main thread. Release Notes: - Git: Fix git-credential-manager --------- Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com> Co-authored-by: Kirill Bulatov <mail4score@gmail.com> Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com> Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com> Co-authored-by: Kirill Bulatov <mail4score@gmail.com>
gcp-cherry-pick-bot[bot] , Conrad Irwin , Max Brunsfeld , and Kirill Bulatov created
5bc7479
Fix unstage/stage in project diff not working when git panel isn't open (cherry-pick #26575) (#26581)
Cherry-picked Fix unstage/stage in project diff not working when git panel isn't open (#26575) Closes #ISSUE Release Notes: - Fix Bug where unstage/stage all in project diff wouldn't work while git panel was closed Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com> Co-authored-by: Anthony Eid <56899983+Anthony-Eid@users.noreply.github.com> Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
gcp-cherry-pick-bot[bot] , Anthony Eid , and Conrad Irwin created
7b821e9
v0.178.x preview
Joseph T. Lyons created
6259ad5
Add RegexSearchTool (#26555)
Release Notes: - N/A
Antonio Scandurra created
8d259a9
git_ui: Update Project Diff empty state design (#26554)
Title Release Notes: - N/A --------- Co-authored-by: Cole Miller <m@cole-miller.net>
Nate Butler and Cole Miller created
010c5a2
docs: Update the Git page (#26530)
So it reflects the new set of features supported starting from v0.177. Release Notes: - N/A
Danilo Leal created
45b126a
git: Add an onboarding and banner flow (#26518)
TODO: - [ ] Hide the reset onboarding action (only useful for development, uncomment: https://github.com/zed-industries/zed/pull/26518/files#diff-f0ce01d9a3df30f60c64b6f9906c54aa0191246a58dbf5297ee321575a180879R96) - [x] Get a designer to replace the modal background (@danilo-leal) Release Notes: - Added a small onboarding banner for the git launch --------- Co-authored-by: Danilo Leal <daniloleal09@gmail.com> Co-authored-by: Danilo Leal <67129314+danilo-leal@users.noreply.github.com>
Mikayla Maki , Danilo Leal , and Danilo Leal created
5f74297
Fix edit tool tests on windows (#26552)
Assertions on the parsed system prompt should use CRLF on Windows. I didn't see it before because I was testing on my Windows VM from a shared folder I cloned on macOS. Release Notes: - N/A
Agus Zubiaga created
349f573
Add ListDirectoryTool (#26549)
Release Notes: - N/A
Antonio Scandurra created
41eb586
Remove `list_worktrees` and use relative paths instead (#26546)
Release Notes: - N/A
Antonio Scandurra created
6bf6fca
macOS: Fix window turning black on fullscreen mode (#26547)
Closes #26534 Recently, we fixed a title bar transparency issue that only occurred on macOS 15.3 and later. PR: https://github.com/zed-industries/zed/pull/26403 However, this seems to have broken multi-window fullscreen behavior on earlier macOS versions. This PR adds versioning so that the title bar transparency fix only applies to macOS 15.3.0 and later. No release notes, as this bug only exists on main right now. Release Notes: - N/A Co-authored-by: MrSubidubi <dev@bahn.sh>
Smit Barmase and MrSubidubi created
6e89537
assistant2: Add an option to enable/disable all tools (#26544)
This PR adds an option to enable or disable all tools in the tool selector. <img width="1297" alt="Screenshot 2025-03-12 at 10 40 28 AM" src="https://github.com/user-attachments/assets/9125bdfb-5b54-461c-a065-2882a8585a67" /> Release Notes: - N/A
Marshall Bowers created
669c6a3
assistant edit tool: Do not include `\r` in old/new str (#26542)
#26538 fixed part of the issue, but it would keep trailing carriage returns in the old/new strings. The model is unlikely to produce those, but we might as well support them. Release Notes: - N/A
Agus Zubiaga created
910531b
Check if additional git provider is not the original git provider (#26533)
Release Notes: - N/A Yesterday I worked on https://github.com/zed-industries/zed/pull/26482 and noticed afterwards that we have duplicated hosting providers if the git remote host is "gitlab.com" and after the PR also for "github.com". This is not a big problem, since the original providers are registered first and therefore we first find a match with the original providers, but I think we should address this nevertheless. We initialize every hosting provider with the defaults here: https://github.com/zed-industries/zed/blob/b008b2863ee015a9dc6ecdcd6dedbc708983f8b3/crates/git_hosting_providers/src/git_hosting_providers.rs#L15-L24 After that, we also register additional hosting providers: https://github.com/zed-industries/zed/blob/b008b2863ee015a9dc6ecdcd6dedbc708983f8b3/crates/git_hosting_providers/src/git_hosting_providers.rs#L30-L43 If we do not check if the additional provider is not the original provider, we will register the same provider twice. --------- Co-authored-by: Marshall Bowers <git@maxdeviant.com>
Nils Koch and Marshall Bowers created
690f26c
Disable clangd's inactiveRegions support (#26539)
Disables https://github.com/zed-industries/zed/pull/26146 until a better way to add diagnostics is found. Overall, the PR had made changes that are worth keeping instead of reverting, such as finally extracting out r-a's language server logic into an `_ext.rs` file. Release Notes: - N/A
Kirill Bulatov created
6b56fee
assistant edit tool: Support \r\n around markers (#26538)
This should fix the tests on Windows Release Notes: - N/A
Agus Zubiaga created
d94001f
git: Fix placeholder dots in untracked files (#26537)
This regressed at some point. Release Notes: - N/A
Cole Miller created
6bcfc40
Introduce a system prompt for the new assistant (#26536)
This should be less eager in terms of invoking tools. But we should keep iterating on it as we add more tools. Also, this disables the Lua interpreter by default (it can still be enabled manually from the tools icon). Release Notes: - N/A --------- Co-authored-by: Richard Feldman <oss@rtfeldman.com>
Antonio Scandurra and Richard Feldman created
47a89ad
assistant: Edit files tool (#26506)
Exposes a new "edit files" tool that the model can use to apply modifications to files in the project. The main model provides instructions and the tool uses a separate "editor" model (Claude 3.5 by default) to generate search/replace blocks like Aider does: ````markdown mathweb/flask/app.py ```python <<<<<<< SEARCH from flask import Flask ======= import math from flask import Flask >>>>>>> REPLACE ``` ```` The search/replace blocks are parsed and applied as they stream in. If a block fails to parse, the tool will apply the other edits and report an error pointing to the part of the input where it occurred. This should allow the model to fix it. Release Notes: - N/A --------- Co-authored-by: Antonio Scandurra <me@as-cii.com>
Agus Zubiaga and Antonio Scandurra created
f3f9789
Improve script tool description and add lines iterator to Lua file objects (#26529)
Release Notes: - N/A --------- Co-authored-by: Agus Zubiaga <hi@aguz.me>
Antonio Scandurra and Agus Zubiaga created
30afba5
Start tracking diffs in `ScriptingSession` (#26463)
The diff is not exposed yet, but we'll take care of that next. Release Notes: - N/A
Antonio Scandurra created
036c123
Add git init button (#26522)
Because why not Release Notes: - N/A
Mikayla Maki created