| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-12-18 | Taking a raw ref of a deref is always safe | Lukas Wirth | -4/+27 | |
| 2024-11-27 | Revert r-a completions breakage | Kirill Bulatov | -243/+74 | |
| Repeats the revert to `stable` https://github.com/rust-lang/rust/pull/133476 using https://patch-diff.githubusercontent.com/raw/rust-lang/rust/pull/133476.diff | ||||
| 2024-11-19 | Remove `TokenKind::InvalidPrefix`. | Nicholas Nethercote | -1/+1 | |
| It was added in #123752 to handle some cases involving emoji, but it isn't necessary because it's always treated the same as `TokenKind::InvalidIdent`. This commit removes it, which makes things a little simpler. | ||||
| 2024-11-16 | Fix related documents diagnostics | Chayim Refael Friedman | -3/+7 | |
| They were converted to LSP position using the current file's line index, which is obviously wrong. | ||||
| 2024-11-16 | Bump xshell | Laurențiu Nicola | -4/+4 | |
| 2024-11-13 | feat: migrate `reorder_fields` assist to use `SyntaxFactory` | Tarek | -8/+21 | |
| Signed-off-by: Tarek <tareknaser360@gmail.com> | ||||
| 2024-11-11 | Update the file hash | Kirill Bulatov | -1/+1 | |
| 2024-11-11 | Use completion item indices instead of property matching when searching for ↵ | Kirill Bulatov | -15/+33 | |
| the completion item to resolve | ||||
| 2024-11-11 | Merge pull request #18482 from regexident/hir_trait_supertraits_accessors | Laurențiu Nicola | -6/+26 | |
| internal: Add public `direct_supertraits(…)` & `all_supertraits(…)` accessor methods to `hir::Trait` | ||||
| 2024-11-10 | Merge pull request #18492 from samestep/docs-dev-no-design-label | Laurențiu Nicola | -1/+1 | |
| Replace Design label with C-Architecture | ||||
| 2024-11-10 | Replace with C-Architecture | Sam Estep | -0/+4 | |
| 2024-11-08 | editors/code: Match supported debug engines in config with actual supported ones | Master-Hash | -3/+7 | |
| 2024-11-08 | Merge pull request #18486 from Wilfred/update_minimum_vscode | Laurențiu Nicola | -25/+27 | |
| editors/code: Change minimum VS Code from 1.78 to 1.83 | ||||
| 2024-11-07 | Delete design label from list | Sam Estep | -4/+0 | |
| 2024-11-07 | Merge pull request #18490 from ShoyuVanilla/dyn-compat-rename | Laurențiu Nicola | -8/+9 | |
| minor: Rename `dyn compatible` to `dyn-compatible` | ||||
| 2024-11-07 | minor: Rename `dyn compatible` to `dyn-compatible` | Shoyu Vanilla | -8/+9 | |
| 2024-11-06 | editors/code: Change minimum VS Code from 1.78 to 1.83 | Wilfred Hughes | -25/+27 | |
| It's been a year since we last bumped this (see #15904), and VS Code 1.83 is the first version that supports LSP 3.17.5 (via vscode-languageclient 9.0.1). https://code.visualstudio.com/updates/v1_83#_language-server-protocol | ||||
| 2024-11-06 | Add `direct_supertraits(…)` HIR-level method to `hir::Trait` type | Vincent Esche | -1/+6 | |
| 2024-11-06 | Add `pub fn direct_super_traits(db, trait_id)` to `hir_ty` crate | Vincent Esche | -3/+14 | |
| 2024-11-06 | Refactor `hir::Trait`'s existing `items_with_supertraits(…)` method based ↵ | Vincent Esche | -2/+1 | |
| on new `all_supertraits(…)` method | ||||
| 2024-11-06 | Add `pub fn all_supertraits(…)` HIR-level method to `hir::Trait` type | Vincent Esche | -0/+5 | |
| 2024-11-04 | Enable triagebot transfer feature | Laurențiu Nicola | -0/+2 | |
| 2024-11-04 | Don't try to auto-publish text-edit | Laurențiu Nicola | -1/+0 | |
| 2024-11-04 | Merge pull request #18475 from Veykril/push-zkvkpxttozup | Lukas Wirth | -174/+143 | |
| Support new #[rustc_intrinsic] attribute and fallback bodies | ||||
| 2024-11-04 | Support new #[rustc_intrinsic] attribute and fallback bodies | Lukas Wirth | -174/+143 | |
| 2024-11-04 | Merge pull request #18473 from Veykril/push-xnlzukoqttvz | Lukas Wirth | -15/+45 | |
| Render extern blocks in `file_structure` | ||||
| 2024-11-04 | Render extern blocks in file_structure | Lukas Wirth | -15/+45 | |
| 2024-11-04 | Fix feature name casing | Laurențiu Nicola | -1/+1 | |
| 2024-11-03 | Allow interpreting consts and statics with interpret function command | Lukas Wirth | -86/+114 | |
| 2024-11-03 | Merge pull request #18469 from Veykril/push-zwnywqmvtuts | Lukas Wirth | -28/+87 | |
| feat: Show `static` values on hover | ||||
| 2024-11-02 | Improve error message for too new proc-macro server | benluiwj | -2/+2 | |
| 2024-11-02 | Allow static initializers to be const evaluated | Lukas Wirth | -28/+87 | |
| 2024-11-01 | Format code | Laurențiu Nicola | -7/+9 | |
| 2024-11-01 | Bump rustc crates | Laurențiu Nicola | -18/+17 | |
| 2024-11-01 | Merge from rust-lang/rust | Laurențiu Nicola | -33/+15 | |
| 2024-11-01 | Preparing for merge from rust-lang/rust | Laurențiu Nicola | -1/+1 | |
| 2024-10-31 | Parse patterns with leading pipe properly in all places | Chayim Refael Friedman | -16/+73 | |
| 2024-10-31 | Merge pull request #18447 from ChayimFriedman2/cleanup-tylowerctx | Lukas Wirth | -224/+201 | |
| Avoid interior mutability in `TyLoweringContext` | ||||
| 2024-10-31 | Remove support for compressed dylib metadata from rust-analyzer | bjorn3 | -22/+4 | |
| 2024-10-31 | Merge pull request #18448 from Veykril/push-zwuuoytnmnqz | Lukas Wirth | -90/+88 | |
| Move `child_by_source` from `hir-def` to `hir` | ||||
| 2024-10-31 | Move child_by_source from hir-def to hir | Lukas Wirth | -90/+88 | |
| 2024-10-31 | Merge pull request #18437 from sam-mccall/publish_fixture | Lukas Wirth | -1/+1 | |
| Publish test-fixture => ra_ap_test_fixture | ||||
| 2024-10-30 | Avoid interior mutability in `TyLoweringContext` | Chayim Refael Friedman | -224/+201 | |
| This requires some serious code juggling. | ||||
| 2024-10-30 | Only parse `safe` as contextual kw in extern blocks | Chayim Refael Friedman | -8/+47 | |
| I don't like the party of `bool`s that is becoming, but two isn't worth a refactoring yet IMO. | ||||
| 2024-10-30 | Merge pull request #18304 from davidkurilla/docs-create-setup-document | Lukas Wirth | -0/+57 | |
| docs: create setup documentation | ||||
| 2024-10-30 | Merge pull request #18382 from dqkqd/issue-17042 | Lukas Wirth | -3/+72 | |
| fix: auto-complete import for aliased function and module | ||||
| 2024-10-30 | Merge pull request #18385 from Giga-Bowser/master | Lukas Wirth | -1/+503 | |
| feat: Add assist to generate a type alias for a function | ||||
| 2024-10-30 | Merge pull request #18436 from Veykril/lw-yvkqwpnwsouo | Lukas Wirth | -191/+478 | |
| Do not render meta info when hovering usages | ||||
| 2024-10-29 | rust-analyzer: `rustc_abi::Abi` => `BackendRepr` | Jubilee Young | -11/+11 | |
| 2024-10-29 | Style hover messages a bit differently | Lukas Wirth | -116/+362 | |
