| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
skip-checks: true
|
| |
|
|
| |
skip-checks: true
|
| | |
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
|
|
|
|
| |
Problem:
ruff_lsp project is now archive and the tool deprecated
Solution:
add deprecation warning to the config description, also ensure that the
user is warned when enabling the config using `vim.deprecate()`
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Problem: Currently the `svelte` configuration expects a globally
installed `svelteserver` binary. Meanwhile, other LSP configs support
binaries installed as dev dependencies on `node_modules/.bin`. A global
language server makes it harder to have project-scoped version
management.
Solution: Implement a `cmd` finder similar to `oxlint` and `oxfmt` which
considers `node_modules/bin` as an additional lookup path as well as the
global install
Workaround: Meanwhile, users can define the `cmd` function on their own
`vim.lsp.config('svelte')` as needed.
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
This fixes #4458.
One option to get doxygen highlighting in C / C++ files is to
append `.doxygen` to the file type (see `:help doxygen`).
This commits add the `c.doxygen` / `cpp.doxygen` filetypes to the list
of clangd lsp to be compatible with this approach.
Note that vim help also recommend an alternative approach that
doesn't change the filetype, which is to define the variable:
let g:load_doxygen_syntax=1
|
| |
|
|
| |
skip-checks: true
|
| | |
|
| |
|
|
| |
skip-checks: true
|
| | |
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6...v7)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
| |
skip-checks: true
|
| |
|
| |
ref https://github.com/hashicorp/terraform-ls/blob/84064cd19ffd0d6b356cd2725d81987111c94cb6/docs/language-clients.md#L162
|
| |
|
|
| |
skip-checks: true
|
| | |
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
| |
skip-checks: true
|
| | |
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
|
| |
Make registry path more specific to the main package to make npx command more reliable
Upstream issue: https://gitlab.com/gitlab-org/editor-extensions/gitlab-lsp/-/work_items/2371
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Problem:
EmmyLua requests configuration from the "emmylua" section, but the
current configuration doesn't expose the settings under that section.
Example request and response:
```json
{
"jsonrpc": "2.0",
"id": 1,
"method": "workspace/configuration",
"params": {
"items": [
{
"scopeUri": "file:///Users/marcus/.dotfiles",
"section": "emmylua"
}
]
}
}
```
```json
{
"result": [
null
],
"id": 1,
"jsonrpc": "2.0"
}
```
Solution:
Move the settings under the "emmylua" section.
After these changes:
```json
{
"jsonrpc": "2.0",
"id": 1,
"method": "workspace/configuration",
"params": {
"items": [
{
"scopeUri": "file:///Users/marcus/.dotfiles",
"section": "emmylua"
}
]
}
}
```
```json
{
"result": [
{
"hint": {
"enable": true
},
"codeLens": {
"enable": true
}
}
],
"id": 1,
"jsonrpc": "2.0"
}
```
|
| |
|
|
| |
skip-checks: true
|
| | |
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
| |
skip-checks: true
|
| | |
|
| | |
|
| |
|
|
| |
skip-checks: true
|
| |
|
| |
Co-authored-by: Delice0 <59118341+Delice0@users.noreply.github.com>
|
| |
|
|
| |
skip-checks: true
|
| |
|
| |
Fixes the issue by changing "enabled" to "enable"
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
|
| |
When flow is not in global PATH, try node_modules/.bin/flow relative
to the project root before falling back to npx. This covers the common
case where flow-bin is a local devDependency.
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
| |
skip-checks: true
|
| | |
|
| |
|
|
| |
skip-checks: true
|
| | |
|
| |
|
|
| |
skip-checks: true
|
| |
|
|
| |
rzls.nvim is deprecated and the support of razor is now moved into roslyn.nvim
with the author for rzls.nvim joining to maintain roslyn.nvim
|
| | |
|