Brandon Sprague
16375cd94a
Treat 'Vagrantfile' files as Ruby code ( #7112 )
...
`Vagrantfile`s are configuration files for the [vagrant](https://www.vagrantup.com/ ) tool, and they are written in Ruby. Even as vagrant [is ported to Go](https://www.hashicorp.com/blog/toward-vagrant-3-0 ), `Vagrantfile`s [will be written in Ruby](https://developer.hashicorp.com/vagrant/docs/experimental/vagrant_go )
When a Vangrantfile is created, it starts with these lines:
```
```
But since Helix (quite reasonably) doesn't change editor behavior based on file contents, adding this to `languages.toml` seems like a reasonable way to get this functionality.
1 year ago
Viktor Kleen
0c21c227e1
Update languages.toml for Nickel ( #7059 )
1 year ago
Blaž Hrastnik
0266ec6ba3
Update language support doc
1 year ago
Blaž Hrastnik
591629ec11
fix compilation
1 year ago
Blaž Hrastnik
c6d1430243
Drop old cairo grammar, alias to rust for now
1 year ago
Matthew Toohey
207829eefe
Fix off-by-one in select symbol references ( #7132 )
1 year ago
Poliorcetics
8e2660b5cc
Update diagnostics correctly on LSP exit ( #7111 )
...
* chore: avoid format! call with argument when useless
* feat: also clear diagnostics for unopened documents when exiting an LSP
* feat: we already worked on `self.editor.diagnostics` no need to redo the checks
1 year ago
dependabot[bot]
6043c3c3db
build(deps): bump bitflags from 2.2.1 to 2.3.1 ( #7117 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
dependabot[bot]
a66e287654
build(deps): bump toml from 0.7.3 to 0.7.4 ( #7120 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
dependabot[bot]
16275db817
build(deps): bump regex from 1.8.1 to 1.8.2 ( #7119 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
dependabot[bot]
d765132426
build(deps): bump pulldown-cmark from 0.9.2 to 0.9.3 ( #7118 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 year ago
yvt
16e0340b4a
feat(languages): recognise `Cargo.lock` as TOML
1 year ago
Chris
d3cca0f357
Recognise XAML files as XML ( #7083 )
1 year ago
LeoniePhiline
41f52d74fe
fix(docs): Remove `config` from language configuration docs ( #7082 )
1 year ago
Szabin
70e4cdbd8e
Add command to merge non-consecutive ranges ( #7053 )
...
* Add command for merging non-consecutive ranges
* Add `merge_selections` command to book
* Simplify `merge_ranges`
Heeded the advice of @the-mikedavis to stop iterating over all ranges and simply merge the first and the last range, as the invariants of `Selection` guarantee that the list of ranges is always sorted and never empty.
* Clarify doc comment of `merge_ranges`
1 year ago
Charles Hall
e4a9bec562
fix off-by-one git-commit rulers ( #7072 )
...
Characters should maximally reside *inside* the ruler, not on top of it.
1 year ago
Yt
ff442eecd0
nix: add overlay for convenient package usage ( #7078 )
1 year ago
Blaž Hrastnik
53f47bc477
Merge pull request #2507 from Philipp-M/multiple-language-servers
...
Add support for multiple language servers per language
1 year ago
Philipp Mildenberger
2a512f7c48
Rebase cleanup/fixes and use lsp::CompletionItem in item_to_transaction directly
1 year ago
Philipp Mildenberger
f8fa0d8a10
Clarify language-servers documentation for mergeable LSP features (`diagnostics`, `code-action`, `completion`, `document-symbols` and `workspace-symbols`)
1 year ago
Philipp Mildenberger
b6d0e26814
Sort language servers table in languages.toml and rename language server 'R' to 'r'
1 year ago
Philipp Mildenberger
f45bbf165e
Apply all review suggestions (doc_id -> id, error message, unnecessary if)
...
Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de>
1 year ago
Philipp Mildenberger
656ee24966
Simplify gutter diagnostics rendering by using partition_point instead of binary search
...
Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de>
1 year ago
Philipp Mildenberger
2b746ea6fa
Some minor clarity/cosmetic improvements
...
Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de>
1 year ago
Philipp Mildenberger
39b9a4bba2
Add function `Editor::language_server_by_id` and refactor/simplify related code, also don't 'crash' in completion menu if language_server somehow disappeared
1 year ago
Philipp Mildenberger
521cdec5a1
Remove TODO comment in helix_lsp::Registry::restart and add doc-comment on top of function instead
1 year ago
Philipp Mildenberger
dcb07673f8
Reorder id generation for Clients to stay close to the old behavior
1 year ago
Philipp Mildenberger
56748509bd
Reduce boilerplate by 'use lsp::*' in Client::supports_feature, and remove TODO comment
1 year ago
Philipp Mildenberger
3e4bac1d96
Fix lsp_restart across multiple different document scopes (language servers weren't restarted, if not of the same scope id), and fix some smaller rebase issues
1 year ago
Philipp Mildenberger
2a21b939c4
Fix crash with filtered diagnostics in gutter (e.g. when diagnostics aren't visible)
1 year ago
Philipp Mildenberger
93fd79a949
Remove offset_encoding in CodeActionOrCommandItem, as it can be retrieved on demand
1 year ago
Philipp Mildenberger
073000e54d
Maintain language servers TOML array order in `doc.language_servers`
1 year ago
Philipp Mildenberger
ff26208427
Filter language servers also by capabilities in `doc.language_servers_with_feature`
...
* Add `helix_lsp::client::Client::supports_feature(&self, LanguageServerFeature)`
* Extend `doc.language_servers_with_feature` to use this method as filter as well
* Add macro `language_server_with_feature!` to reduce boilerplate for non-mergeable language server requests (like goto-definition)
* Refactored most of the `find_map` code to use the either the macro or filter directly via `doc.language_servers_with_feature`
1 year ago
Philipp Mildenberger
9d089c27c7
Fix docgen again
1 year ago
Philipp Mildenberger
451fe528bb
Filter out already seen language servers in requests that can be sent to multiple language servers (code-action, completion, symbol pickers)
1 year ago
Philipp Mildenberger
8ee599942a
Optimize gutter diagnostics and simplify shown_diagnostics
1 year ago
Philipp Mildenberger
8ab6d7be5e
Use let else instead of variable and fix some error messages
...
Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de>
1 year ago
Philipp Mildenberger
1d5d5dab47
Remove offset_encoding in CompletionItem
1 year ago
Philipp Mildenberger
2eeac10755
Refactor doc language servers to a HashMap, and the config to use a Vec to retain order
1 year ago
Philipp Mildenberger
b1199c552b
Remove symbol picker is_empty check
1 year ago
Philipp Mildenberger
58c913ce45
Simplify 'lsp_stop' command
1 year ago
Philipp Mildenberger
7d20740b5b
Fix docgen and lsp-stop documentation
1 year ago
Philipp Mildenberger
60a6af1fea
Remove boilerplate in the goto methods by generically composing functions
1 year ago
Philipp Mildenberger
d963050621
Format/fix language docs a bit
1 year ago
Philipp Mildenberger
9639f42766
Refactor doc.shown_diagnostics to avoid an extra HashSet
...
Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de>
1 year ago
Philipp Mildenberger
1122928c2a
Add method doc.supports_language_server for better readability
1 year ago
Philipp Mildenberger
ec2f9091a0
Simplify Display implementation for LanguageServerFeature
1 year ago
Philipp Mildenberger
76b5cab524
Refactored doc.language_servers and doc.language_servers_with_feature to return an iterator and refactor LanguageServerFeature handling to a HashMap (language server name maps to features)
...
Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de>
1 year ago
Philipp Mildenberger
0637691eb1
Use DoubleEndedIterator instead of collect to Vec for reversing
...
Co-authored-by: Pascal Kuthe <pascal.kuthe@semimod.de>
1 year ago
Philipp Mildenberger
dd2f74794a
Fix error messages when no language server is available
...
Co-authored-by: Skyler Hawthorne <skyler@dead10ck.com>
1 year ago