Commit log
808ddc2
Merge pull request #2353 from zed-industries/more-intuitive-autocomplete-with-copilot
Click to expand commit body
Match VS Code's behavior when deciding whether to show Copilot suggestion
Antonio Scandurra
created
2 years ago
65fd605
Revert "Return the previous suggestion when replacing it"
Click to expand commit body
This reverts commit 971c88db809f448cada0fcdfea53051fedac84f3.
Antonio Scandurra
created
2 years ago
e7150d0
Merge pull request #2354 from zed-industries/nate/fix-embedded-highlight-in-ruby
Click to expand commit body
Fix embedded highlight in ruby
Nate Butler
created
2 years ago
7ff97e5
Fix embedded highlight in ruby
Nate Butler
created
2 years ago
b58ac81
Trigger copilot only on insertion and deletion
Click to expand commit body
Also, avoid showing the suggestion if a completion is in progress to
avoid flickering.
Antonio Scandurra
created
2 years ago
971c88d
Return the previous suggestion when replacing it
Antonio Scandurra
created
2 years ago
a2aad31
Merge pull request #2352 from zed-industries/debounce-copilot
Click to expand commit body
Debounce copilot completions
Antonio Scandurra
created
2 years ago
e970d84
Debounce copilot completions
Click to expand commit body
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Antonio Scandurra
and
Nathan Sobo
created
2 years ago
5df5973
Merge pull request #2351 from zed-industries/more-copilot-enhancements
Click to expand commit body
Fix additional Copilot issues
Antonio Scandurra
created
2 years ago
60955fb
Refresh active copilot suggestion when accepting completion
Antonio Scandurra
created
2 years ago
79d5bb4
Clear Copilot suggestions when it gets disabled from the settings
Antonio Scandurra
created
2 years ago
abf158a
Merge pull request #2347 from zed-industries/disable-yaml-key-ordering
Click to expand commit body
Disable key ordering diagnostic for YAML
Antonio Scandurra
created
2 years ago
bcf9b2f
Add missing random delays in FakeFs
Max Brunsfeld
created
2 years ago
91d8598
Merge pull request #2350 from zed-industries/copilot-disable
Click to expand commit body
Disable copilot unless the staff mode flag is flipped
Mikayla Maki
created
2 years ago
fa32a20
fixup! fixup! fixup! removed copilot from generated schema and command palette
Mikayla Maki
created
2 years ago
a1abe8d
fixup! fixup! removed copilot from generated schema and command palette
Mikayla Maki
created
2 years ago
ae6a671
fixup! removed copilot from generated schema and command palette
Mikayla Maki
created
2 years ago
47de4dc
removed copilot from generated schema and command palette
Mikayla Maki
created
2 years ago
6bfecd7
Refactor staff mode into a seperate crate and make copilot initialization wait for the staff mode flag to be flipped
Mikayla Maki
created
2 years ago
b251e24
Check for consistency between clients every time the system quiesces
Max Brunsfeld
created
2 years ago
7b0a6c0
Add an 'on_failure' attribute to gpui tests
Click to expand commit body
This lets us perform a finalization step when a randomized test fails.
Max Brunsfeld
created
2 years ago
5ecc960
Use synchronous locks in FakeFs
Click to expand commit body
This way, the state can be accessed without running the deterministic
executor.
Max Brunsfeld
created
2 years ago
55297c1
Merge pull request #2348 from zed-industries/copilot-feedback
Click to expand commit body
Fix issues from copilot feedback
Mikayla Maki
created
2 years ago
f95732e
Fix bug where guest would drop BufferSaved messages while opening the buffer
Max Brunsfeld
created
2 years ago
1627cf7
Add standard copilot keybinding
Mikayla Maki
created
2 years ago
bab0e88
Fix bug where copilot auth window will only be shown once
Mikayla Maki
created
2 years ago
543301f
Avoid repeatedly loading/saving the test plan for each iteration
Max Brunsfeld
created
2 years ago
2e33f8b
fixup! Remove per-file copilot enable/disable
Mikayla Maki
created
2 years ago
48d9c30
Remove per-file copilot enable/disable
Mikayla Maki
created
2 years ago
0250898
Enable copilot in all file types by default
Mikayla Maki
created
2 years ago
c960277
Merge branch 'main' into randomized-tests-operation-script
Max Brunsfeld
created
2 years ago
2c0a645
Provide `workspace_folders` capability when initializing LSP
Click to expand commit body
This fixes the YAML language server which was erroring on startup
after adding the `did_change_watched_files` capability in #2258.
Antonio Scandurra
created
2 years ago
588b2da
Disable key ordering diagnostic for YAML language server
Antonio Scandurra
created
2 years ago
6955765
Merge pull request #2346 from zed-industries/petros/z-360-dragging-file-from-tree-to-split-results
Click to expand commit body
Fix dragging file from tree to split results in empty pane
Petros Amoiridis
created
2 years ago
5a39772
Do not drop the task
Click to expand commit body
Co-Authored-By: Antonio Scandurra <me@as-cii.com>
Petros Amoiridis
and
Antonio Scandurra
created
2 years ago
cdfe873
Merge pull request #2343 from zed-industries/handles
Click to expand commit body
Make typed handles wrappers around their untyped equivalents
Nathan Sobo
created
2 years ago
0cb73b6
Merge pull request #2345 from zed-industries/autocomplete-vs-copilot
Click to expand commit body
Make autocompletion and copilot mutually exclusive
Antonio Scandurra
created
2 years ago
b88aa9a
Clear active copilot suggestion only if there is one
Antonio Scandurra
created
2 years ago
ec5309b
Make autocompletion and copilot mutually exclusive
Antonio Scandurra
created
2 years ago
b6a9d90
Move creation of `GetCompletionsParams` entirely to the background
Antonio Scandurra
created
2 years ago
0b9e609
Merge pull request #2344 from zed-industries/copilot-collaboration
Click to expand commit body
Fix Copilot errors when opening buffers that don't exist locally
Antonio Scandurra
created
2 years ago
Antonio Scandurra
created
2 years ago
75ecf92
Fix Copilot errors when opening buffers that don't exist locally
Antonio Scandurra
created
2 years ago
138aa04
Add downcast_ref to AnyViewHandle
Click to expand commit body
I use unsafe code to transmute an AnyViewHandle to a ViewHandle<T> when
the type matches. Because ViewHandle<T> is repr(transparent) to the
wrapped AnyViewHandle, this is safe.
Nathan Sobo
created
2 years ago
71cf6ec
Use into_any instead of weird 'as' hack
Nathan Sobo
created
2 years ago
27258a0
Remove From trait for AnyViewHandle in favor of into_any method
Click to expand commit body
I think it's more explicit.
Nathan Sobo
created
2 years ago
aed8df9
Wrap AnyWeak handles with their typed counterparts
Nathan Sobo
created
2 years ago
82a713f
Store AnyViewHandle inside ViewHandle and Deref to it
Nathan Sobo
created
2 years ago
59fb4b3
Merge pull request #2342 from zed-industries/trust-npm-version-management
Click to expand commit body
Trust NPM instead of managing dirs for different Node server versions
Julia
created
2 years ago
8c0db17
Trust NPM instead of managing dirs for different Node server versions
Julia
created
2 years ago
Page 5 of 175