ForLoveOfCats
|
5149c15329
|
Add "go to type definition" action
|
2022-07-29 11:41:08 -04:00 |
|
Antonio Scandurra
|
f2d92d640d
|
Copy setting and keymap files from legacy config locations
|
2022-07-29 10:01:48 +02:00 |
|
Antonio Scandurra
|
5f6e4c7d91
|
Extract all zed config/cache paths into a paths module
|
2022-07-29 10:01:48 +02:00 |
|
Antonio Scandurra
|
cfe3ebd2b3
|
Use XDG-compliant directories for config and cache files
|
2022-07-29 10:01:48 +02:00 |
|
Max Brunsfeld
|
a842016380
|
Merge pull request #1418 from zed-industries/autoindent-on-paste
Auto-indent improvements
|
2022-07-28 23:23:42 -07:00 |
|
Max Brunsfeld
|
868c460620
|
🎨 Rename and simplify some autoindent stuff
|
2022-07-28 22:40:30 -07:00 |
|
Max Brunsfeld
|
7a26fa18c7
|
Record start columns when writing to the clipboard from Zed
|
2022-07-28 22:13:32 -07:00 |
|
Max Brunsfeld
|
2d05f906f1
|
Start work on adjusting pasted text based on old start column
|
2022-07-28 17:29:42 -07:00 |
|
Mikayla Maki
|
8471af5a7d
|
Improved render performance implementation to use a fork of alacritty which includes the last # of bytes processed as a way of estimating throughput in cases where the terminal output is chanegd in place
|
2022-07-28 16:03:00 -07:00 |
|
Max Brunsfeld
|
3a74290359
|
Merge branch 'main' into autoindent-on-paste
|
2022-07-28 15:09:18 -07:00 |
|
Mikayla Maki
|
81cbdcfd11
|
Reduced time holding lock even more
|
2022-07-28 14:58:19 -07:00 |
|
Max Brunsfeld
|
fa5af4383d
|
Introduce AutoindentMode parameter to Buffer::edit
This controls whether or not we preserve the relative indentation
of inserted text blocks.
Co-authored-by: Mikayla Maki <mikayla.c.maki@gmail.com>
|
2022-07-28 14:03:31 -07:00 |
|
Max Brunsfeld
|
cdf6ae25bb
|
Remove indent_size parameter from Buffer::edit_with_autoindent
Instead, compute the indent size by reading the settings inside that method.
Co-authored-by: Mikayla Maki <mikayla.c.maki@gmail.com>
|
2022-07-28 13:00:05 -07:00 |
|
Max Brunsfeld
|
b1b252ee45
|
Fix error in autoindent range calculation
|
2022-07-28 11:51:03 -07:00 |
|
Antonio Scandurra
|
b8383b6175
|
Merge pull request #1402 from zed-industries/open-log
Introduce `zed: open log` command
|
2022-07-28 10:36:09 +02:00 |
|
Antonio Scandurra
|
df6e733e68
|
Open both old and new log files, but just retain the last 1000 lines
|
2022-07-28 10:25:40 +02:00 |
|
Antonio Scandurra
|
de35c3f99d
|
Prevent log file from becoming larger than 1MB
|
2022-07-28 10:02:38 +02:00 |
|
Isaac Clayton
|
b20aefc842
|
First draft for opening Zed.log
|
2022-07-28 09:25:39 +02:00 |
|
Mikayla Maki
|
57146b6e39
|
Added variable rate refreshing based on terminal throughput. Should be the last of the performance improvements for now
|
2022-07-27 16:46:15 -07:00 |
|
Mikayla Maki
|
8a48a11a00
|
Implemcargo
|
2022-07-27 16:33:15 -07:00 |
|
K Simmons
|
20d45221c9
|
Move terminal modal keymap context to the connected view
|
2022-07-27 11:00:54 -07:00 |
|
Mikayla Maki
|
0ccdc64668
|
Working on finding a way of estimating throughput
|
2022-07-27 10:58:23 -07:00 |
|
Mikayla Maki
|
153305f5e4
|
Finished long-lock style rendering. Need to dynamically adjust the notification rate to handle high throughput scenarios
|
2022-07-27 10:21:50 -07:00 |
|
Mikayla Maki
|
9dfdaae94d
|
Nearly done, not scheduling our own re-render yet
|
2022-07-27 10:11:10 -07:00 |
|
Antonio Scandurra
|
92de5ab000
|
v0.49.1
|
2022-07-27 13:39:29 +02:00 |
|
Antonio Scandurra
|
426b57731d
|
Merge pull request #1419 from zed-industries/ime-regressions
Fix IME regressions
|
2022-07-27 12:37:37 +02:00 |
|
Antonio Scandurra
|
f0814c7784
|
Fix vim tests using old key bindings
|
2022-07-27 12:19:01 +02:00 |
|
Antonio Scandurra
|
6a718dc4da
|
Don't insert input when the fn key is held
|
2022-07-27 12:01:44 +02:00 |
|
Antonio Scandurra
|
d3f14fb1c2
|
Dispatch application menu events if custom key equivalent wasn't found
|
2022-07-27 11:46:47 +02:00 |
|
Antonio Scandurra
|
5c5e7db587
|
Fix vim keybindings containing the shift modifier
They regressed as part of https://github.com/zed-industries/zed/pull/1405.
|
2022-07-27 09:31:47 +02:00 |
|
Antonio Scandurra
|
fe7ba09d52
|
Honor shift when converting keystroke to native key equivalent
|
2022-07-27 09:28:56 +02:00 |
|
Max Brunsfeld
|
f547c268ce
|
Restructure autoindent to preserve relative indentation of inserted text
|
2022-07-26 17:43:43 -07:00 |
|
Max Brunsfeld
|
537530bf76
|
🎨 compute_autoindents
|
2022-07-26 17:09:30 -07:00 |
|
Max Brunsfeld
|
09ed149184
|
Improve calculation of which lines are new when auto-indenting
|
2022-07-26 17:09:30 -07:00 |
|
Mikayla Maki
|
d1e878f0c6
|
Checkpoint, still not compiling
|
2022-07-26 16:58:14 -07:00 |
|
Mikayla Maki
|
6b9c1e78c1
|
Merge pull request #1417 from zed-industries/working-directory-regression
Fixed regression in working directory code
|
2022-07-26 16:39:40 -07:00 |
|
Mikayla Maki
|
8a6605c090
|
Added test covering this feature
|
2022-07-26 16:30:51 -07:00 |
|
Mikayla Maki
|
88202a567c
|
Fixed regression in working directory code
|
2022-07-26 16:22:07 -07:00 |
|
Mikayla Maki
|
ace16b63a9
|
Checkpoint, still converting terminal to events. Not compiling
|
2022-07-26 16:17:26 -07:00 |
|
Max Brunsfeld
|
ef1efb615e
|
0.49.0
|
2022-07-26 14:26:45 -07:00 |
|
Max Brunsfeld
|
20b8e03ff0
|
Restore lack of bottom border on active tab
Co-authored-by: Keith Simmons <keith@zed.dev>
|
2022-07-26 14:20:29 -07:00 |
|
Mikayla Maki
|
71af876489
|
removed stray file
|
2022-07-26 13:10:04 -07:00 |
|
Nate Butler
|
f20fc152f5
|
Merge pull request #1416 from zed-industries/update-theme-styles
Rebalance text and icon color usage...
|
2022-07-26 16:04:42 -04:00 |
|
Nate Butler
|
01eed2c844
|
Rebalance text and icon color usage...
...to better differentiate between primary, secondary and muted.
|
2022-07-26 15:53:48 -04:00 |
|
Keith Simmons
|
4ff007eaab
|
Merge pull request #1414 from zed-industries/fix-theme-issues
Fix tab bar themes
|
2022-07-26 11:55:17 -07:00 |
|
K Simmons
|
2bd0819ac8
|
Extract tab bar from workspace
|
2022-07-26 10:41:02 -07:00 |
|
Nate Butler
|
0bbf116724
|
Use Fontawesome Icons
Update arrow variants, download, check marks to use Font awesome icon variants
|
2022-07-26 12:45:09 -04:00 |
|
Antonio Scandurra
|
b73b58ef6e
|
Merge pull request #1413 from zed-industries/sort-symbols-and-completions
Improve sorting of project symbols and completions
|
2022-07-26 15:11:33 +02:00 |
|
Antonio Scandurra
|
8552ba15dc
|
Show symbols located in visible paths before ones located externally
|
2022-07-26 14:48:18 +02:00 |
|
Antonio Scandurra
|
f775cb2947
|
Honor sort_text when language server provides completions
|
2022-07-26 10:41:39 +02:00 |
|