You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-28Lines changed: 24 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,43 +23,39 @@ The extension will automatically populate the latest API types and documentation
23
23
24
24
The initial goal is to develop a language server supporting all common LSP functions.
25
25
Module resolution and typing will initially revolve around [Rojo](https://github.com/JohnnyMorganz/luau-analyze-rojo).
26
-
The idea is to ensure module resolution is modular, allowing the server to later be extended to support other environments where Luau may be used.
27
-
We could also potentially take it a step forward, allowing the server to be used on an Lua 5.1 codebase through a translation layer (such as type comments through EmmyLua), allowing the language server to become general purpose, powered by the Luau type inference engine.
28
26
29
-
## Initial Stages
30
-
31
-
-[x] Develop a serial language server which correctly handles JSON-RPC messages, communicating over stdio
32
-
-[x] Implement diagnostics based on luau-analyze
33
-
-[x] Implement module resolution (based on [luau-analyze-rojo](https://github.com/JohnnyMorganz/luau-analyze-rojo))
34
-
-[x] Support `textDocument/completion` using the Luau autocomplete engine
27
+
The idea is to ensure module resolution is customisable, allowing the server to later be easily extended to support other environments where Luau may be used.
28
+
We could also potentially take it a step forward, allowing the server to be used on an Lua 5.1 codebase through a translation layer (such as type comments through EmmyLua), allowing the language server to support general purpose Lua development powered by the Luau type inference engine.
0 commit comments