3fb6e31
revert for loop change and store matched actions in a sorted set instead
Kay Simmons
created
04df00b
Iterate over keymap then dispatch path when matching keybindings to make precedence more intuitive
Click to expand commit body
Rename action which adds the active tab to the dock to be more intuitive
Add action which moves the active tab out of the dock and bind it to the same keybinding
2d39358
rust: Highlight functions called with a turbofish
Max Brunsfeld
created
a4a1797
Merge pull request #2171 from zed-industries/add-option-to-advance-cursor-downward-when-toggling-comment
Click to expand commit body
Add option to advance cursor downward when toggling comment
Joseph T. Lyons
created
19b686a
Merge pull request #2177 from zed-industries/check-before-test
Click to expand commit body
Cargo check before test to catch warnings/errors
Julia
created
ac882c7
Merge pull request #2179 from zed-industries/debounce-diagnostics
Click to expand commit body
Simulate disk-based diagnostics finishing 1s after saving buffer
Antonio Scandurra
created
baee6d0
Simulate disk-based diagnostics finishing 1s after saving buffer
Click to expand commit body
Previously, we would simulate disk-based diagnostics finishing after
saving a buffer. However, the language server may produce diagnostics
right after emitting the event, causing the diagnostics status bar item
to not reflect the latest state of the buffer.
With this change, we will instead simulate disk-based diagnostics finishing
after 1s after saving the buffer (only for language servers that
don't have the concept of disk-based diagnostics, such as TypeScript). This
ensures we always reflect the latest state and doesn't cause the UI to flicker
as a result of the LSP sending us diagnostics after every input.
Antonio Scandurra
created
50ccf16
Cargo check before test to catch warnings/errors