Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Align config's API with usage | Aleksey Kladov | 2021-01-06 | 4 | -19/+17 |
| | | | | The config now is mostly immutable, optimize for that. | ||||
* | YAGNI active_resolve_capabilities | Aleksey Kladov | 2021-01-06 | 1 | -6/+2 |
| | | | | | | | | | This leaks a lot of LSP details into ide layer, which we want to avoid: https://github.com/rust-analyzer/rust-analyzer/tree/c9cec381bcfd97e5f3536e31a9c546ab5c0665e6/docs/dev#lsp-independence Additionally, all what this infra does is providing a toggle for auto-import completion, but we already have one! | ||||
* | Change the should_panic completion and his related attribute test | FlowerBOII | 2021-01-06 | 1 | -7/+3 |
| | |||||
* | Remove the args for the must_use attibute and change the related tests | FlowerBOII | 2021-01-06 | 1 | -3/+3 |
| | |||||
* | Update deprecated test | FlowerBOII | 2021-01-06 | 1 | -3/+3 |
| | |||||
* | Remove a part of the deprecated autocompletion | FlowerBOII | 2021-01-06 | 1 | -1/+1 |
| | |||||
* | Small helpers | Kirill Bulatov | 2021-01-04 | 1 | -1/+1 |
| | |||||
* | Code review fixes | Kirill Bulatov | 2021-01-04 | 1 | -9/+2 |
| | |||||
* | Ignore associated items during unqialified path fuzzy completions | Kirill Bulatov | 2021-01-04 | 1 | -1/+9 |
| | |||||
* | Remove source_old from adding const and function impls | Nick Spain | 2021-01-02 | 1 | -23/+26 |
| | |||||
* | Mark HasSource::source_old as deprecated but allow at all call sites | Nick Spain | 2021-01-02 | 1 | -0/+2 |
| | |||||
* | HasSource::source -> HasSource::source_old | Nick Spain | 2021-01-02 | 1 | -2/+2 |
| | | | | To start migrating HasSource::source to return an Option. | ||||
* | Merge #7102 | bors[bot] | 2021-01-01 | 1 | -2/+66 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | 7102: Fix completion of Default struct update syntax r=Veykril a=nick96 Previously the inserted text was always `..Default::default()` which ends up as `...Default::default()` if `.` was typed. Now checks if the current token is `.` and inserts `.Default::default()` if it is, so `..Default::default()` is correctly completed. I think there's probably a better way to implement this context aware completion because I've seen it in other parts of rust-analyzer as a user but I'm not sure how to do it. Fixes #6969 Co-authored-by: Nick Spain <[email protected]> | ||||
| * | Strip completion prefix of what has already been typed | Nick Spain | 2021-01-01 | 1 | -5/+4 |
| | | | | | | | | | | Per Veykril's suggestion, this removes the need to repeat the completion text twice. It also handles the completion in a more general case. | ||||
| * | Add a test for correct completion of ..Default::default() | Nick Spain | 2021-01-01 | 1 | -1/+61 |
| | | |||||
| * | Fix completion of Default struct update syntax | Nick Spain | 2020-12-31 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | | Previously the inserted text was always `..Default::default()` which ends up as `...Default::default()` if `.` was typed. Now checks if the current token is `.` and inserts `.Default::default()` if it is, so `..Default::default()` is correctly completed. Fixes #6969 | ||||
* | | Remove some unneeded string allocations | Lukas Wirth | 2020-12-31 | 1 | -1/+1 |
|/ | |||||
* | Avoid a couple of allocations | Laurențiu Nicola | 2020-12-29 | 1 | -2/+2 |
| | |||||
* | Merge #7064 | bors[bot] | 2020-12-29 | 1 | -3/+8 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7064: Ignore qualifiers when doing autoimport completions lookup r=lnicola a=SomeoneToIgnore A follow-up of https://github.com/rust-analyzer/rust-analyzer/pull/6918#issuecomment-748511151 and the PR itself. Tweaks the `import_map` query api to be more flexible with the ways to match against the import path and now fuzzy imports search in names only. This had improved the completion speed for me locally in ~5 times for `fuzzy_completion` span time, but please recheck me here. IMO we're fast and presice enough now, so I've added the modules back to the fuzzy search output. Also tweaks the the expect tests to display functions explicitly, to avoid confusing "duplicate" results. Co-authored-by: Kirill Bulatov <[email protected]> | ||||
| * | Tweak the fuzzy search limits | Kirill Bulatov | 2020-12-28 | 1 | -1/+6 |
| | | |||||
| * | Add docs and optimisations | Kirill Bulatov | 2020-12-28 | 1 | -2/+2 |
| | | |||||
| * | Better query api and fuzzy search | Kirill Bulatov | 2020-12-28 | 1 | -1/+1 |
| | | |||||
| * | Draft the module exclusion in modules | Kirill Bulatov | 2020-12-28 | 1 | -1/+1 |
| | | |||||
* | | Merge #7076 | bors[bot] | 2020-12-29 | 1 | -1/+10 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 7076: Properly parse path separators in format-like postfix r=Veykril a=Veykril Co-authored-by: Lukas Wirth <[email protected]> | ||||
| * | | Properly parse path separators in format-like postfix | Lukas Wirth | 2020-12-29 | 1 | -1/+10 |
| |/ | |||||
* / | format-postfix completion takes format instead of fmt | Lukas Wirth | 2020-12-29 | 2 | -2/+2 |
|/ | |||||
* | Merge #6960 | bors[bot] | 2020-12-23 | 2 | -1/+55 |
|\ | | | | | | | | | | | | | | | | | 6960: Show enum variant on Self qualified paths r=matklad a=Veykril Fixes first part of #6549 Fixes #6550 Co-authored-by: Lukas Wirth <[email protected]> | ||||
| * | Show enum variant completions for ref scrutinee | Lukas Wirth | 2020-12-20 | 1 | -1/+26 |
| | | |||||
| * | Show enum variant on Self qualified paths | Lukas Wirth | 2020-12-20 | 1 | -0/+29 |
| | | |||||
* | | Reduce some more code duplication | Lukas Wirth | 2020-12-22 | 1 | -9/+29 |
| | | |||||
* | | Insert snippet positions after fields names in record patterns | Lukas Wirth | 2020-12-21 | 1 | -5/+5 |
| | | |||||
* | | Emit snippets for struct pattern completion if enabled | Lukas Wirth | 2020-12-20 | 1 | -5/+5 |
| | | |||||
* | | Add completions for patterns | Lukas Wirth | 2020-12-20 | 1 | -15/+139 |
|/ | |||||
* | Align code_model name with ungrammar | Aleksey Kladov | 2020-12-20 | 1 | -1/+1 |
| | |||||
* | Fewer allocations | Kirill Bulatov | 2020-12-19 | 1 | -5/+7 |
| | |||||
* | Tidy up | Kirill Bulatov | 2020-12-19 | 2 | -32/+26 |
| | |||||
* | Keep the original completion order in tests | Kirill Bulatov | 2020-12-19 | 11 | -192/+192 |
| | |||||
* | Add a slightly better fuzzy search heuristics | Kirill Bulatov | 2020-12-19 | 1 | -10/+62 |
| | |||||
* | Show first fuzzy completions fully containing the input | Kirill Bulatov | 2020-12-17 | 1 | -5/+14 |
| | |||||
* | Remove some redundant allocations | Jeremy Kolb | 2020-12-12 | 1 | -1/+1 |
| | |||||
* | Use natural trait ordering in derive completion | Aleksey Kladov | 2020-12-11 | 1 | -17/+18 |
| | | | | | | | | derive(Clone, Copy) reads better than derive(Copy, Clone). However, we preserve the reverse ordering in the lookup text for sorting purposes. That way, it's convenient to type just `Ord` to derive everything. | ||||
* | Remove debug print | Aleksey Kladov | 2020-12-10 | 1 | -7/+5 |
| | |||||
* | Minor, more orthogonal code | Aleksey Kladov | 2020-12-10 | 1 | -9/+7 |
| | | | | It's better to accept things as arguments rather than store them. | ||||
* | Normalize spelling to American English | Aleksey Kladov | 2020-12-10 | 1 | -5/+5 |
| | |||||
* | Tweak the search query params for better lookup speed | Kirill Bulatov | 2020-12-08 | 1 | -31/+29 |
| | |||||
* | Better config name | Kirill Bulatov | 2020-12-08 | 1 | -2/+4 |
| | |||||
* | Disable the completion for no corresponding client resolve capabilities | Kirill Bulatov | 2020-12-07 | 1 | -76/+58 |
| | |||||
* | Document the feature | Kirill Bulatov | 2020-12-07 | 1 | -0/+43 |
| | |||||
* | Less panic, more tests | Kirill Bulatov | 2020-12-07 | 1 | -2/+39 |
| | |||||
* | Use stateless completion resolve | Kirill Bulatov | 2020-12-07 | 1 | -4/+6 |
| |