Techatrix
9badc745c5
remove setup wizard ( #878 )
...
* remove setup wizard
* add back findZig function
2023-01-02 13:54:13 -05:00
Techatrix
3449269fd3
Add a replay feature to zls ( #857 )
...
* add config options for `zls --replay`
* implement `zls --replay`
* remove carriage return from zls replay files
* add missing arguments for Server.init in tests
2022-12-31 01:45:45 -05:00
Techatrix
94ec3a0a86
Debugging utilities ( #860 )
...
* add debug printing for Ast and DocumentScope
* add optional failing allocator
2022-12-30 18:42:53 -05:00
Techatrix
61c0981294
Use zig-lsp-codegen ( #850 )
...
* add lsp.zig
* change references from types.zig to lsp.zig
* remove types.zig and requests.zig
* add tres as a submodule
* transition codebase from types.zig to lsp.zig
* update lsp.zig
* completely overhaul message handler
* fix memory errors
* partially transition tests to lsp.zig
* update lsp.zig
* more test fixes
* disable failing tests
* fix message handling bugs
* fix remaining tests
* access correct union in diff.applyTextEdits
* more message handler fixes
* run zig fmt
* update tres submodule
* fix memory access to freed memory
* simplify initialize_msg for testing
* check if publishDiagnostics is supported
2022-12-27 01:47:57 -05:00
Techatrix
1ae341850e
automatically generate config associated files ( #813 )
2022-12-11 13:10:48 +02:00
Techatrix
d030dd0993
improve conformance to the lsp ( #687 )
2022-09-30 00:04:27 -04:00
Techatrix
e9e9571fe5
avoid config copy for document store ( #669 )
2022-09-21 21:31:48 -04:00
Techatrix
e6238e3354
improve width of log prefix ( #649 )
2022-09-13 16:12:32 -04:00
Techatrix
ff779049f1
only globally log to stderr
2022-09-11 23:48:15 +02:00
Techatrix
66b35d62b2
report zls version using git describe
2022-09-01 15:42:15 +02:00
Techatrix
ffb3f9440e
add --show-config-path for querying the config path
2022-08-30 00:46:13 +02:00
InKryption
249685e4c5
2 minor tidy-ups + fix for over-eager unused parameter error in function types
2022-08-19 00:31:41 +02:00
InKryption
cb5eeb0b45
Improve CLI, fix leak, & other.
2022-08-18 19:46:22 +02:00
Techatrix
1ab262c625
Fix memory leaks
2022-08-06 01:30:43 +02:00
Techatrix
fca78a98b0
move ArenaAllocator into Server
2022-08-01 00:44:07 +02:00
Techatrix
75570aef3c
add writer interface to Server & move main to main.zig
2022-07-31 23:38:27 +02:00
Auguste Rame
1d910ed973
Start refactoring main -> Server's globals
2022-07-17 12:00:29 +02:00
Auguste Rame
6f19772c17
Fix config source of truth problems, refactor some more
2022-07-15 18:06:18 +02:00
Auguste Rame
4507f4a275
Add Discord link, DocumentStore now uses the config source of truth!
2022-07-15 14:51:36 +02:00
Auguste Rame
2e379336b9
(Hopefully) fix configuration uri/memory bugs
...
Closes #533
2022-07-14 12:43:10 +02:00
Auguste Rame
37f79c86fa
Fix CI?
...
I really need to fix Zig's error handling on message send failure, it's so bad 😭
2022-07-11 20:28:50 +02:00
Auguste Rame
acd57ddb16
workspace configuration server request model implemented!
2022-07-11 15:45:31 +02:00
Auguste Rame
3b33750f59
Add config option, fix config wizard, fix random crash and extern unused highlighting
2022-07-09 05:23:53 -04:00
Auguste Rame
43c61b3da6
@import and @embedFile completions!
2022-07-09 05:23:53 -04:00
Auguste Rame
bb89c3518b
Nice to have style hint and bug fix
2022-07-09 05:23:53 -04:00
Auguste Rame
5838a34101
Fix small bugs
...
Thanks for the heads up Travis :)
2022-07-08 22:57:34 +02:00
Auguste Rame
0c0cb261b7
Basic variable type resolution on hover
2022-07-08 15:15:50 -04:00
Auguste Rame
0f3eb1df36
Fix function snippets not working with details
2022-07-08 04:57:58 -04:00
Auguste Rame
a96532aa65
Add config option for unused vars
2022-07-08 04:26:31 -04:00
Auguste Rame
e5e76c8063
Add super basic unused variable support
2022-07-08 04:26:31 -04:00
Auguste Rame
acb339ab95
Merge branch 'master' into label_details_support
2022-07-07 03:15:05 -04:00
ryuukk
9101cc7c3f
Put constants/imports at the top
2022-07-07 03:09:44 -04:00
ryuukk
2fdb05f783
Append the actual label so it can then be sorted a-z
2022-07-07 03:09:44 -04:00
ryuukk
1abf328947
Cleanup
2022-07-07 03:09:44 -04:00
ryuukk
b625eb763e
Sort completion items
2022-07-07 03:09:44 -04:00
Lee Cannon
e9e4a15224
fix memory leak
2022-06-27 10:14:18 -04:00
ryuukk
64f525f95f
Implement label details support
2022-06-23 16:44:22 +02:00
Gerred Dillon
083dd5fbdf
Remove duplicated deinit defer for GPA
2022-06-09 17:05:03 -04:00
Tw
769fecf9c8
only send format editings when necessary
...
If the original document is same as the formatted one, there's no need to send the unchanged
document's content back which will make the client confused.
Signed-off-by: Tw <tw19881113@gmail.com>
2022-06-08 22:54:17 -04:00
Auguste Rame
29d2dd6802
Add tracy
2022-06-06 00:28:52 -04:00
Gregory Anders
289d137d13
Ignore unimplemented notifications
...
Responding to an unimplemented notification can cause errors for some
LSP clients that do not expect to receive a response after sending a
notification. Differentiate between unimplemented requests and
notifications and only send a generic null response for the former while
silently ignoring the latter.
2022-06-05 17:26:56 -04:00
Vesim
f5fb4afd7c
implement workspace/configuration
2022-06-05 13:36:28 -04:00
Lee Cannon
4f04f7dac0
std.ChildProcess.init
cannot error
2022-05-29 18:18:57 +01:00
David Gonzalez Martin
a1f72d46e3
Fix ZLS config not found crash #410
2022-02-07 22:14:31 -06:00
Sebastian Keller
472104c0e1
Fix build on zig master (0.10.0-dev.500+66cf011aa)
...
std.process.args() has a slightly different api now, breaking the build
on zig master.
2022-02-01 21:52:15 +01:00
Auguste Rame
08f2638d6a
Merge pull request #445 from nektro/autocomplete-builtin
...
add a default option for `@import(builtin)`
2022-01-01 16:57:39 -05:00
Meghan Denny
09d51af161
handle AccessDenied when making 'builtin.zig' fill-in
2021-12-29 22:53:30 -08:00
Meghan Denny
3fdab6c2fa
add a default option for import(builtin)
2021-12-29 19:35:16 -08:00
Meghan Denny
49cbbd1ebb
add builtin data for 0.9.0
2021-12-29 22:24:34 -05:00
Auguste Rame
18569926a3
Fix compilation on latest Zig
2021-12-23 14:00:07 -05:00