about summary refs log tree commit diff
path: root/src/tools/rust-analyzer
AgeCommit message (Collapse)AuthorLines
2025-02-16Temporarily ignore tests with commentsShoyu Vanilla-0/+6
2025-02-15Implement expand_glob_reexport assistOlivier FAURE-19/+208
2025-02-15Factor out business logic of expand_glob_importOlivier FAURE-82/+75
2025-02-15fix: remove unnecessary conversionasuto15-1/+1
2025-02-15Delete library modifier to highlighting for extern crateasuto15-24/+7
2025-02-13add cargo's git checkouts to the list of paths to mark as read-only in vscodeJacob Lifshay-0/+1
2025-02-14internal: Remove mutable syntax tree usages from `add_missing_match_arms` assistShoyu Vanilla-113/+66
2025-02-13Merge pull request #19141 from Wilfred/split_editorsLukas Wirth-618/+635
manual: Separate out installation and configuration pages
2025-02-12Apply cfg.setTest to json projectsDavid Richey-44/+50
2025-02-13Delete useless commaasuto15-1/+1
2025-02-13Add modifiers to highlighting for extern crateasuto15-2/+31
2025-02-12manual: Separate out installation and configuration pagesWilfred Hughes-618/+635
Organise the installation content into: * VS Code instructions * Binary installation * Editor configuration
2025-02-12Merge pull request #19142 from Veykril/push-upwqztrsuwpzLukas Wirth-202/+335
Spawn toolchain querying processes in parallel
2025-02-12Rename sysroot src/lib related thingsLukas Wirth-104/+121
2025-02-12Merge pull request #19148 from Veykril/push-ptnykrwnwwluLukas Wirth-79/+152
Improve error recovery when method-calling a field
2025-02-12Improve error recovery when method-calling a fieldLukas Wirth-79/+152
2025-02-12Spawn toolchain querying processes in parallelLukas Wirth-112/+228
2025-02-12Merge pull request #18928 from roife/fix-18918Lukas Wirth-1/+5295
fix: handle character boundary in search mode
2025-02-12Merge pull request #19109 from Veykril/push-nzpuuqommpnqLukas Wirth-31/+97
fix: Do not show safety hints for extern items lacking semantics
2025-02-12fix: handle character boundary in search moderoife-1/+5295
2025-02-12fix: Do not show safety hints for extern items lacking semanticsLukas Wirth-31/+97
2025-02-12Merge pull request #19111 from ShoyuVanilla/issue-19021Lukas Wirth-9/+89
fix: Apply adjustments to proper expr when invoking `CoerceMany`
2025-02-12Merge pull request #19110 from eagr/panic-contextLukas Wirth-22/+18
Simplify panic_context
2025-02-12Merge pull request #19125 from ChayimFriedman2/cfg-attr-fastLukas Wirth-24/+96
fix: Censor cfg_attr for attribute macros
2025-02-12Merge pull request #18995 from alibektas/12210Lukas Wirth-117/+187
fix: Lower range pattern bounds to expressions
2025-02-12Merge pull request #19129 from ChayimFriedman2/snippet-macroLukas Wirth-27/+64
fix: Fix postfix completions inside macros
2025-02-12Merge pull request #19132 from joshrotenberg/book-readme-run-codegenLukas Wirth-1/+1
doc: add xtask codegen command in development README as well
2025-02-12Merge pull request #19136 from ↵Lukas Wirth-116/+193
rust-lang/dependabot/npm_and_yarn/editors/code/esbuild-0.25.0 Bump esbuild from 0.18.12 to 0.25.0 in /editors/code
2025-02-12minor: don't show drop hints for other patterngohome001-6/+6
2025-02-12Merge pull request #19143 from Veykril/push-mkokotluzskwLukas Wirth-2/+22
Propogate error types in mir type projections
2025-02-12Propogate error types in mir type projectionsLukas Wirth-2/+22
2025-02-12Merge pull request #19140 from joshrotenberg/remove-mdbook-toc-configLukas Wirth-5/+0
doc: remove unused plugin config
2025-02-12Merge pull request #19139 from Wilfred/fix_assists_urlsLukas Wirth-1/+1
manual: Fix URLs to rustdoc pages
2025-02-11remove unused plugin configJosh Rotenberg-5/+0
2025-02-11Merge pull request #19133 from joshrotenberg/fix-manual-github-pathsChayim Refael Friedman-3/+3
doc: fix mdbook repository paths
2025-02-11manual: Fix URLs to rustdoc pagesWilfred Hughes-1/+1
Now that the manual lives at /manual/, we need to use absolute URLs to link to rustdoc content.
2025-02-11Merge pull request #19117 from gohome001/implicit-drop-inlay-hints-bugChayim Refael Friedman-2/+24
Fix: don't emit implicit drop inlay hints for macro
2025-02-11Merge pull request #18998 from ChayimFriedman2/excludeLukas Wirth-131/+262
fix: Make `rust-analyzer.files.excludeDirs` work, actually
2025-02-11add test case for ignoring inlay hint for macro callgohome001-0/+21
2025-02-11don't emit implicit drop inlay hints for macrogohome001-2/+3
2025-02-11Fix highlighting for extern crate in doc commentsasuto15-0/+7
2025-02-11Bump esbuild from 0.18.12 to 0.25.0 in /editors/codedependabot[bot]-116/+193
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.18.12 to 0.25.0. - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2023.md) - [Commits](https://github.com/evanw/esbuild/compare/v0.18.12...v0.25.0) --- updated-dependencies: - dependency-name: esbuild dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
2025-02-10fix mdbook pathsJosh Rotenberg-3/+3
2025-02-10add xtask codegen command as wellJosh Rotenberg-1/+1
2025-02-10Merge pull request #19124 from jyn514/range-fmt-off-by-oneLukas Wirth-8/+88
Fix off-by-one error in RangeFormatting
2025-02-10Fix postfix completions inside macrosChayim Refael Friedman-27/+64
Previously the receiver text was taken directly from the AST, which in macros is missing trivia, leading to corruption (or just unintended replacement of user code). Now we upmap the range, and extract the original file text in it.
2025-02-10Extend the renaming to coerce_unsafe_ptrBastian Kersting-1/+1
2025-02-10pass struct fields to chalkaustaras-20/+37
2025-02-10Merge pull request #19088 from Hmikihiro/all_remove_duplicate_module_adtChayim Refael Friedman-1/+72
fix: if item exsits on module, resolve as module instead of type
2025-02-10Shadowing BuiltinType by ModuleHayashi Mikihiro-1/+72
Signed-off-by: Hayashi Mikihiro <34ttrweoewiwe28@gmail.com>