jsonnet-language-server
jsonnet-language-server copied to clipboard
A Language Server Protocol (LSP) server for Jsonnet (https://jsonnet.org)
Hi, i'm using jrsonnet binary as jsonnet binary replacement and use an experimental feature there, for that reason i need to pass an extra argument to the binary. It would...
## Versions - VS Code Jsonnet Language Server Extension v0.3.3 - jsonnet-language-server v0.11.0 ## Example Code ```jsonnet local nextID = std.native('nextID'); { id: nextID(), } ``` ## Error Message ```...
Currently only stdlib has doc support, it would be nice to have the same feature for user defined libraries.
Followed guide [here](https://github.com/grafana/jsonnet-language-server/tree/main/editor/vim#jsonnet-language-server-integration-for-vim) for nvim-lspconfig, then installed `jsonnet_ls` using `LspInstall`. `LspInfo` does recognize the `jsonnet_ls` config, but the filetype is not detected. Also followed the steps outlined in the [nvim-lspconfig...
In the last week or so the language server has stopped working for me. I connect to a desktop from my laptop using Remote SSH and do most of my...
With Jump to definition already supported, it would helps a lot if I can rename local and object key
update nixpkgs, fix license (name changed), and fix new syntax for `buildGoModule`
This adds a test case to test reassigning locals, it doesn't work as expected.
When requesting `textDocument/completion` on some context, the server can return `items` as `null`. This is a violation of the protocol, which does not allow this key to be null: ```...