| Age | Commit message (Expand) | Author | Lines |
| 2024-11-27 | Revert r-a completions breakage | Kirill Bulatov | -30/+3 |
| 2024-10-30 | Merge pull request #18382 from dqkqd/issue-17042 | Lukas Wirth | -3/+72 |
| 2024-10-28 | Merge pull request #18420 from ChayimFriedman2/cfg-true-false | Lukas Wirth | -0/+2 |
| 2024-10-28 | Move text-edit into ide-db | Lukas Wirth | -14/+15 |
| 2024-10-27 | Support `cfg(true)` and `cfg(false)` | Chayim Refael Friedman | -0/+2 |
| 2024-10-26 | Use method syntax | MoskalykA | -1/+1 |
| 2024-10-26 | Start using `Option::is_none_or` | MoskalykA | -2/+1 |
| 2024-10-24 | fix: handle aliased pattern and simplify testcase | Khanh Duong Quoc | -23/+32 |
| 2024-10-24 | refactor: separate function for getting import name | Khanh Duong Quoc | -7/+19 |
| 2024-10-23 | fix: auto-complete import for aliased function and module | Khanh Duong Quoc | -2/+50 |
| 2024-10-21 | Auto merge of #18360 - roife:safe-kw-3, r=Veykril | bors | -54/+146 |
| 2024-10-22 | minor: refactor completions in item_list | roife | -27/+24 |
| 2024-10-21 | feat: better completions for extern blcoks | roife | -18/+104 |
| 2024-10-21 | refactor add_keywords in ide-completions for clarity | roife | -47/+56 |
| 2024-10-21 | Auto merge of #18337 - dqkqd:issue-18287, r=Veykril | bors | -0/+18 |
| 2024-10-21 | fix: private items are shown in completions for modules in fn body | Khanh Duong Quoc | -0/+18 |
| 2024-10-21 | Update ide tests | Lukas Wirth | -1/+1 |
| 2024-10-01 | Fix: Handle block exprs as modules when finding their parents | Shoyu Vanilla | -2/+8 |
| 2024-09-30 | Auto merge of #18167 - SomeoneToIgnore:fat-completions, r=Veykril | bors | -3/+30 |
| 2024-09-25 | Merge from rust-lang/rust | Laurențiu Nicola | -0/+1 |
| 2024-09-24 | Auto merge of #18161 - ChayimFriedman2:postfix-mut, r=Veykril | bors | -1/+52 |
| 2024-09-23 | internal: Make COMPLETION_MARKER more explicitly r-a | Wilfred Hughes | -1/+1 |
| 2024-09-23 | Support expect in attribute completion and hover | Laurențiu Nicola | -2/+25 |
| 2024-09-23 | Omit completion fields to be resolved later | Kirill Bulatov | -4/+0 |
| 2024-09-23 | Prepare for omittiong parts of completion data that need to be resolved | Kirill Bulatov | -3/+34 |
| 2024-09-22 | Include dereferences in consuming postfix completions (e.g. `call`) | Chayim Refael Friedman | -0/+31 |
| 2024-09-22 | Properly account for mutable references when postfix-completing consuming com... | Chayim Refael Friedman | -1/+21 |
| 2024-09-21 | add `C-cmse-nonsecure-entry` ABI | Folkert de Vries | -0/+1 |
| 2024-09-20 | Auto merge of #18132 - ChayimFriedman2:fix-closure-semi, r=Veykril | bors | -32/+100 |
| 2024-09-18 | Get rid of `$crate` in expansions shown to the user | Chayim Refael Friedman | -10/+22 |
| 2024-09-18 | Extract logic to decide how to complete semicolon for unit-returning function... | Chayim Refael Friedman | -39/+73 |
| 2024-09-18 | Don't complete `;` when in closure return expression | Chayim Refael Friedman | -24/+58 |
| 2024-09-12 | Auto merge of #18038 - roife:fix-issue-18034, r=Veykril | bors | -1/+2 |
| 2024-09-10 | refactor: introduce NameGenerator in suggest_name | roife | -1/+2 |
| 2024-09-08 | Automatically add semicolon when completing unit-returning functions | Chayim Refael Friedman | -40/+192 |
| 2024-09-05 | Add Definition kind for asm register classes | Lukas Wirth | -0/+1 |
| 2024-09-03 | Auto merge of #18031 - roife:suggest-name-in-completion, r=Veykril | bors | -0/+110 |
| 2024-09-03 | tests: suggesting names in completions for let_stmt and fn_param | roife | -0/+73 |
| 2024-09-03 | feat: suggest name in let_stmt and fn_param | roife | -0/+37 |
| 2024-09-02 | Adjust completions scoring | Lukas Wirth | -50/+46 |
| 2024-09-02 | Simplify CompletionRelevance | Lukas Wirth | -90/+85 |
| 2024-09-01 | Complete desugared and resugared async fn in trait impls | Lukas Wirth | -55/+248 |
| 2024-09-01 | feat(ide-completion): extra sugar auto-completion `async fn ...` in `impl tra... | Yunfei | -1/+37 |
| 2024-08-30 | fix(ide-completion): fix handling of `for` in `impl T for A` in function body | rami3l | -5/+81 |
| 2024-08-26 | Auto merge of #17963 - avrong:avrong/error-lifetimes, r=Veykril | bors | -6/+6 |
| 2024-08-26 | Show and render error lifetime args as `'_` | Aleksei Trifonov | -6/+6 |
| 2024-08-26 | Auto merge of #17941 - ChayimFriedman2:pre-closure-to-fn, r=Veykril | bors | -2/+4 |
| 2024-08-25 | fix: Fix trait method completions not acknowledging Deref impls | Lukas Wirth | -0/+36 |
| 2024-08-24 | Modify `hacks::parse_expr_from_str()` to take an edition too | Chayim Refael Friedman | -2/+4 |
| 2024-08-16 | Auto merge of #17905 - ChayimFriedman2:edition-dependent-raw-keyword, r=Veykril | bors | -146/+406 |