diff options
author | 2023-09-17 09:13:30 -0700 | |
---|---|---|
committer | 2023-09-17 09:13:30 -0700 | |
commit | 639a12f59fc5342360c341bc9858244c107cc30e (patch) | |
tree | d6069d92e1d9014d3a797bbaecfd93c2623f2335 /docs | |
parent | 25aa51dfc4976d1477d2714e5742393f190dc39f (diff) | |
download | bun-639a12f59fc5342360c341bc9858244c107cc30e.tar.gz bun-639a12f59fc5342360c341bc9858244c107cc30e.tar.zst bun-639a12f59fc5342360c341bc9858244c107cc30e.zip |
Fix ZLS commit hash in the document (#5510)
* Fix ZLS commit hash in the document
* Remove ZLS section from the doc
Diffstat (limited to 'docs')
-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: |