| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2022-07-20 | Auto merge of #12800 - hi-rustin:rustin-patch-issue-12717, r=hi-rustin | bors | -2/+4 | |
| Find original as node before compute ref match part of https://github.com/rust-lang/rust-analyzer/issues/12717 | ||||
| 2022-07-19 | Upgrade to expect-test@1.4.0 | Amos Wenger | -1/+1 | |
| cf. https://github.com/rust-analyzer/expect-test/issues/33 cf. https://github.com/rust-lang/rust/pull/99444#issuecomment-1188844202 | ||||
| 2022-07-18 | Find original as node before compute ref match | hi-rustin | -2/+4 | |
| Signed-off-by: hi-rustin <rustin.liu@gmail.com> | ||||
| 2022-07-17 | Check for local IDs belong to same definition | iDawer | -0/+22 | |
| 2022-07-16 | Auto merge of #12773 - Veykril:self-compl, r=Veykril | bors | -18/+124 | |
| fix: Improve self param completion applicability Fixes https://github.com/rust-lang/rust-analyzer/issues/9522 | ||||
| 2022-07-16 | fix: Improve self param completion applicability | Lukas Wirth | -18/+124 | |
| 2022-07-15 | fix: Don't show qualified path completions for private items | Lukas Wirth | -31/+68 | |
| 2022-07-14 | Auto merge of #12735 - feniljain:fix-completions, r=feniljain | bors | -112/+140 | |
| fix(completion): `super::` completion at crate root and module depth aware - should close #12439 - Suggest super according to the depth in tree | ||||
| 2022-07-14 | fix(completion): `super::` completion at crate root and module depth | feniljain | -112/+140 | |
| aware | ||||
| 2022-07-11 | Fix obsolete `completion.snippets` config | TonalidadeHidrica | -2/+2 | |
| 2022-07-11 | Fix config keys regarding imports in docs | TonalidadeHidrica | -1/+1 | |
| 2022-07-08 | Update remaining GitHub URLs | Jonas Schievink | -2/+2 | |
| 2022-07-07 | fix default type param value position | Hongxu Xu | -3/+3 | |
| 2022-07-07 | check arg_idx >= n_params only if arg_idx >= n_required_params | Hongxu Xu | -5/+5 | |
| 2022-07-07 | Handle generic args per arg index | Hongxu Xu | -40/+199 | |
| Add more test cases for generic args | ||||
| 2022-07-06 | Show only assoc type args in the correct arg pos | Hongxu Xu | -3/+52 | |
| 2022-07-05 | Complete associated type only in trait generic arg | Hongxu Xu | -46/+99 | |
| Fix tidy check does not work for marks in multiline | ||||
| 2022-07-03 | Bump smallvec | Laurențiu Nicola | -1/+1 | |
| 2022-07-02 | Auto merge of #12627 - yue4u:fix/struct-variant-patterns, r=Veykril | bors | -76/+140 | |
| fix: complete enum variants as patterns in pattern path close #12593 | ||||
| 2022-07-02 | Auto merge of #12678 - Veykril:flyimport, r=Veykril | bors | -4/+28 | |
| fix: Trigger flyimport completions in item lists again Fixes https://github.com/rust-lang/rust-analyzer/issues/12656 | ||||
| 2022-07-02 | fix: Trigger flyimport completions in item lists again | Lukas Wirth | -4/+28 | |
| 2022-07-02 | fix: escape for enum variant | yue4u | -3/+57 | |
| 2022-07-02 | fix: variants rendering in pattern path | yue4u | -73/+83 | |
| 2022-07-01 | Auto merge of #12636 - xuhongxu96:fix-12148, r=Veykril | bors | -55/+225 | |
| complete raw identifier with "r#" prefix Fix #12148 Escape Names and Paths used in `insert_text`/`insert_snippet` while rendering the completion items. | ||||
| 2022-07-01 | fix: Simplify macro statement expansion handling | Lukas Wirth | -0/+30 | |
| 2022-06-27 | Auto merge of #12643 - Veykril:macro-compl, r=Veykril | bors | -1/+33 | |
| fix: Fix completions for locals not working properly inside macro calls | ||||
| 2022-06-27 | fix: Fix completions for locals not working properly inside macro calls | Lukas Wirth | -1/+33 | |
| 2022-06-27 | Auto merge of #12635 - antogilbert:tgt_feat, r=Veykril | bors | -4/+4 | |
| Correct target_feature completion I changed the `target_feature` to match the description given in #12616. | ||||
| 2022-06-27 | fix: deduplicate cfg completions | Manas | -1/+2 | |
| cfg completions are duplicated if they are set with multiple values. This patch deduplicates them. | ||||
| 2022-06-27 | Udate unit tests | Antonello Palazzi | -2/+2 | |
| 2022-06-26 | complete raw identifier with "r#" prefix | Hongxu Xu | -55/+225 | |
| 2022-06-26 | Correct target_feature completion | Antonello Palazzi | -2/+2 | |
| 2022-06-24 | fix: completes non exhaustive variant within the defining crate | yue4u | -5/+46 | |
| 2022-06-20 | internal: Simplify some completions | Lukas Wirth | -220/+137 | |
| 2022-06-20 | Reimplement auto-ref completions for fields | Lukas Wirth | -12/+35 | |
| 2022-06-20 | Remove pattern rendering hack | Lukas Wirth | -122/+235 | |
| 2022-06-20 | fix: Fix auto-ref completions inserting into wrong locations | Lukas Wirth | -74/+79 | |
| 2022-06-20 | fix: Don't trigger pattern completions when typing a wildcard pattern | Lukas Wirth | -1/+17 | |
| 2022-06-20 | internal: Lift out IdentContext from CompletionContext | Lukas Wirth | -346/+451 | |
| 2022-06-20 | internal: Remove `previous_token` field from `CompletionContext` | Lukas Wirth | -37/+50 | |
| 2022-06-20 | Remove some usages of `Completions::add_resolution` | Lukas Wirth | -54/+62 | |
| 2022-06-20 | Even more completion context filtering | Lukas Wirth | -256/+263 | |
| 2022-06-20 | Lift out PathKind variant fields into structs | Lukas Wirth | -91/+86 | |
| 2022-06-20 | Split remaining completion calls on the context kinds | Lukas Wirth | -118/+130 | |
| 2022-06-18 | Consider walking up macro expansions when searching for surrounding entities ↵ | Lukas Wirth | -40/+45 | |
| in completion analysis | ||||
| 2022-06-18 | Move `CompletionContext::impl_def` into corresponding entities | Lukas Wirth | -48/+97 | |
| 2022-06-18 | Move `CompletionContext::incomplete_let` into `PathKind::Expr` | Lukas Wirth | -12/+29 | |
| 2022-06-18 | Move `CompletionContext::function_def` into `PathKind::Expr` | Lukas Wirth | -39/+82 | |
| 2022-06-18 | internal: NameRefKind classification is not optional | Lukas Wirth | -143/+144 | |
| 2022-06-18 | minor: Simplify | Lukas Wirth | -75/+47 | |
