v-analyzer
February 15, 2025 ยท View on GitHub
v-analyzer
Bring IDE features for the V programming language to VS Code, Vim, and other editors.
The features provided by v-analyzer include:
- code completion/IntelliSense
- go to definition, type definition
- find all references, document symbol, symbol renaming
- types and documentation on hover
- inlay hints for types and some construction like
orblock - semantic syntax highlighting
- formatting
- signature help
Installation
Linux, macOS, Windows
Note: the following command will download install.vsh to the current directory, then
run it, and then delete it. If there is a pre-existing file with this name, make sure it
is safe, when it is overwritten/deleted, or change the current directory (the script itself
can be run from anywhere).
v download -RD https://raw.githubusercontent.com/vlang/v-analyzer/main/install.vsh
Note: if you get messages about response does not start with HTTP/, try going to the
main V repository, then do ./v -d use_openssl cmd/tools/vdownload.v .
After that, retry the same command:
v download -RD https://raw.githubusercontent.com/vlang/v-analyzer/main/install.vsh
Pre-built binaries
You can download pre-built binaries from the release page. Currently, we provide binaries for Linux (x64), macOS (x64 and ARM), and Windows (x64).
Building from source
Note
This repository uses Git submodules. In practice, this means that you either have to:
git clone --filter=blob:none --recursive --shallow-submodules https://github.com/vlang/v-analyzer
... or, if you used just git clone https://github.com/vlang/v-analyzer, you can execute below
inside your local v-analyzer clone:
git submodule init && git submodule update
If you do not do either, the symptom is that when you try to build v-analyzer, you will get a
C compiler message, about lib.c not found
Tip
On Windows, use GCC for building, as TCC can run into some issues.
Update V to the latest version:
v up
You can build a debug or release version of the binary. The debug version will be slower, but faster to compile.
v build.vsh debug
v build.vsh release
The compiled binary will be located in the bin/ folder.
Setup
Add the bin/ folder to your $PATH environment variable to make the v-analyzer command easily
accessible.
You can also specify the path to the binary in your VS Code settings:
{
"v-analyzer.serverPath": "/path/to/v-analyzer/bin/v-analyzer"
}
Note Restart VS Code after changing the settings or PATH.
Config
v-analyzer is configured using global or local config.
The global config is located in ~/.config/v-analyzer/config.toml, changing it will affect all
projects.
A local config can be created with the v-analyzer init command at the root of the project.
Once created, it will be in ./.v-analyzer/config.toml.
Each setting in the config has a detailed description.
Pay attention to the custom_vroot setting, if v-analyzer cannot find where V was installed, then
you will need to specify the path to it manually in this field.
Updating
To update v-analyzer to the latest version, run:
v-analyzer up
You can also update to a nightly version:
v-analyzer up --nightly
Note In the nightly version you will get the latest changes, but they may not be stable!
VS Code extension
The VS Code extension is available via the VS Code Marketplace.
The source code for extension is contained in the editors/code folder of this repository.
NVIM LSP / Mason
For Neovim users, v-analyzer is available via nvim-lspconfig plugin. It is part of the mason registry and could be installed with both Neovim plugins:
- mason.nvim with
:MasonInstall v-analyzercommand - mason-lspconfig.nvim with
:LspInstallcommand
Authors
jsonrpc,lsp,tree_sitter_vmodules written initially by VLS authors and after that in 2023 it was modified by the VOSCA.
Thanks
- VLS authors for the initial Language Server implementation!
- vscode-vlang authors for the first VS Code extension!
- rust-analyzer and gopls for the inspiration!
- Tree-sitter authors for the cool parsing library!
License
This project is under the MIT License. The full license text can be found in the LICENSE file.