diff options
-rw-r--r-- | docs/project/development.md | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/docs/project/development.md b/docs/project/development.md index cd21ea4fb..5e8abd8e6 100644 --- a/docs/project/development.md +++ b/docs/project/development.md @@ -285,26 +285,6 @@ The above will probably also need Zig and/or C++ code rebuilt. VSCode is the recommended IDE for working on Bun, as it has been configured. Once opening, you can run `Extensions: Show Recommended Extensions` to install the recommended extensions for Zig and C++. ZLS is automatically configured. -### ZLS - -ZLS is the language server for Zig. The latest binary that the extension auto-updates may not function with the version of Zig that Bun uses. It may be more reliable to build ZLS from source: - -```bash -$ git clone https://github.com/zigtools/zls -$ cd zls -$ git checkout f91ff831f4959efcb7e648dba4f0132c296d26c0 -$ zig build -``` - -Then add absolute paths to Zig and ZLS in your vscode config: - -```json -{ - "zig.zigPath": "/path/to/zig/install/zig", - "zig.zls.path": "/path/to/zls/zig-out/bin/zls" -} -``` - ## JavaScript builtins When you change anything in `src/js/builtins/*` or switch branches, run this: |