about summary refs log tree commit diff
AgeCommit message (Collapse)AuthorLines
2025-05-10Merge pull request #19772 from rust-lang/push-nxzlokoozypoLukas Wirth-33/+47
internal: Make diagnostics experimental by default
2025-05-09Make diagnostics experimental by defaultFlorian Diebold-33/+47
2025-05-08Merge pull request #19507 from Hmikihiro/fix_module_doc_linksLukas Wirth-149/+548
fix: resolve doc path from parent module if outer comments exist on module
2025-05-08add assert to check ast_index smaller than INNER_ATTR_SET_BITHayashi Mikihiro-13/+9
Signed-off-by: Hayashi Mikihiro <34ttrweoewiwe28@gmail.com>
2025-05-08Merge pull request #19764 from ChayimFriedman2/too-many-asterisks-dbgChayim Refael Friedman-13/+33
fix: Fix postfix snippets duplicating derefs
2025-05-08Fix postfix snippets duplicating derefsChayim Refael Friedman-13/+33
2025-05-08Merge pull request #19763 from ChayimFriedman2/ws-completionsLukas Wirth-3/+76
fix: Still complete parentheses & method call arguments if there are existing parentheses, but they are after a newline
2025-05-08Still complete parentheses & method call arguments if there are existing ↵Chayim Refael Friedman-3/+76
parentheses, but they are after a newline
2025-05-07extract function: `doc_attributes` to find def from inner docHayashi Mikihiro-8/+26
Signed-off-by: Hayashi Mikihiro <34ttrweoewiwe28@gmail.com>
2025-05-07add doc link test for hoverHayashi Mikihiro-0/+122
Signed-off-by: Hayashi Mikihiro <34ttrweoewiwe28@gmail.com>
2025-05-07add doc link test for goto defHayashi Mikihiro-0/+68
Signed-off-by: Hayashi Mikihiro <34ttrweoewiwe28@gmail.com>
2025-05-07check module path inner or outerHayashi Mikihiro-130/+256
Signed-off-by: Hayashi Mikihiro <34ttrweoewiwe28@gmail.com>
2025-05-06Merge pull request #19738 from ChayimFriedman2/weird-gatsLukas Wirth-0/+32
fix: Don't panic on some weird code
2025-05-06Remove ast index maskHayashi Mikihiro-7/+10
Signed-off-by: Hayashi Mikihiro <34ttrweoewiwe28@gmail.com>
2025-05-06import std::iter::repeatHayashi Mikihiro-0/+1
Signed-off-by: Hayashi Mikihiro <34ttrweoewiwe28@gmail.com>
2025-05-06Update crates/hir-expand/src/attrs.rsHayashi Mikihiro-1/+1
Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2025-05-06Update crates/hir-expand/src/attrs.rsHayashi Mikihiro-1/+1
Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
2025-05-06fix: resolve doc path if outer comments exist on module and replace from ↵Hayashi Mikihiro-34/+99
cfg_attr bit to doc_place bit Signed-off-by: Hayashi Mikihiro <34ttrweoewiwe28@gmail.com>
2025-05-06Don't panic on some weird codeChayim Refael Friedman-0/+32
2025-05-06Merge pull request #19721 from ChayimFriedman2/more-parallelLukas Wirth-256/+188
Better handle parallelism in cache priming
2025-05-06Notify the user that we're collecting symbolsChayim Refael Friedman-1/+10
It could be confusing if they see "Indexing n/n" but cache priming does not finish.
2025-05-05Merge pull request #19751 from VictorArcium/env-var-cargo-manifest-pathChayim Refael Friedman-0/+17
Support environment variable CARGO_MANIFEST_PATH.
2025-05-05Add a `--num-threads` to the `prime-caches` CLI commandChayim Refael Friedman-60/+61
And make it parallel by default (and remove the `--parallel` flag) to mirror the IDE cache priming.
2025-05-05Better manage parallel prime cachesChayim Refael Friedman-245/+167
To make best use of available cores, and don't waste time waiting for other tasks. See the comments in the code for explanation.
2025-05-05Support environment variable CARGO_MANIFEST_PATH.Victor-0/+17
2025-05-05Merge pull request #19750 from Veykril/push-zvvsopwxovrnLukas Wirth-5/+0
fix: Remove unnecessary token length check for macros in renaming
2025-05-05fix: Remove unnecessary token length check for macros in renamingLukas Wirth-5/+0
2025-05-05Merge pull request #19749 from Veykril/push-tsxvxzzmlxpqLukas Wirth-56/+4
refactor: Remove unnecessary `AsAny` trait
2025-05-05Merge pull request #19748 from Veykril/push-qvmtutwtonouLukas Wirth-10/+4
github: Direct users to discussions instead of issues for questions
2025-05-05refactor: Remove unnecessary `AsAny` traitLukas Wirth-56/+4
2025-05-05github: Direct users to discussions instead of issues for questionsLukas Wirth-10/+4
2025-05-05Merge pull request #19434 from vishruth-thimmaiah/negatives_in_concatLukas Wirth-3/+36
fix: negative nums in `concat!` expansion
2025-05-05fix: negative nums in `concat!` expansionVishruth-Thimmaiah-3/+36
2025-05-05Merge pull request #19747 from Veykril/push-kqxvxrxozswrLukas Wirth-18/+111
fix: Fix `move_bounds` assists not working for lifetimes
2025-05-05fix: Fix `move_bounds` assists not working for lifetimesLukas Wirth-47/+196
2025-05-05Merge pull request #19746 from Veykril/push-swvuyqwwplrtLukas Wirth-44/+415
fix: Fix proc-macro API creating malformed negative literals
2025-05-05fix: Fix proc-macro API creating malformed negative literalsLukas Wirth-29/+85
2025-05-05minor: Add more proc-macro tests for parsing negative literalsLukas Wirth-26/+341
2025-05-05Merge pull request #19745 from Veykril/push-rnqulnqvltroLukas Wirth-0/+118
minor: Add a mbe test for parsing negative literals
2025-05-05minor: Add a mbe test for parsing negative literalsLukas Wirth-0/+118
2025-05-05Merge pull request #19740 from vishruth-thimmaiah/unwrap_path_typeLukas Wirth-0/+175
feat: add an assist to unwrap a type with a generic arg
2025-05-05feat: add an assist to unwrap a type with a generic argVishruth-Thimmaiah-0/+175
This assist unwraps a type into its generic type argument, ignoring const and lifetime arguments
2025-05-05Merge pull request #19707 from Veykril/push-kqkpzkymkyylLukas Wirth-455/+498
refactor: De-arc defmap queries
2025-05-05refactor: De-arc defmap queriesLukas Wirth-455/+498
2025-05-05Merge pull request #19742 from Veykril/push-ykmuwtkzruqmLukas Wirth-22/+303
fix: Fix incorrect handling of unresolved non-module imports in name resolution
2025-05-05Fix incorrect handling of unresolved non-module imports in name resolutionLukas Wirth-22/+303
2025-05-04Merge pull request #19739 from Veykril/push-kpozprqnsmkkLukas Wirth-12/+12
Disable fixpoint for variance computation temporarily
2025-05-04Disable fixpoint for variance computation temporarilyLukas Wirth-12/+12
2025-05-04Merge pull request #19735 from A4-Tacks/improve-let-snippetLukas Wirth-6/+101
Improve the let code snippet
2025-05-03Improve let snippetA4-Tacks-6/+6