No description
- Rust 98.9%
- BQN 1.1%
| lsp | ||
| parser | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| LICENSE | ||
| README.md | ||
| rustfmt.toml | ||
Singeli LSP
Build: cargo build --release --bin singeli-lsp. Produces target/release/singeli-lsp, which should be used as the LSP command.
In LSP settings you can add this to specify the location of the standard include files:
{
"include": "/path/to/mlochbaum/Singeli/include"
}
Alternatively or additionally, you can make a .singeli_compile_commands.json file in any parent directory (or in build/ of a parent directory) containing invocations to use to compile the sources:
[
{
"file": "/path/to/my/file.singeli",
"arguments": ["-l", "=/path/to/mlochbaum/Singeli/include"]
},
{
"file": "/path/to/second_file.singeli",
"arguments": ["-l", "=/path/to/mlochbaum/Singeli/include"]
}
]