about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/editors/code
AgeCommit message (Collapse)AuthorLines
2024-06-04fmtChosenName-4/+4
2024-06-04fmtChosenName-2/+6
2024-06-04Update package.jsonChosenName-1392/+2198
2024-05-25Removed returnJonas Rinke-3/+4
2024-05-25FormattingJonas Rinke-2/+2
2024-05-25SemicolonJonas Rinke-1/+1
2024-05-25Use correct format for setting environment variables when debugging with ↵Jonas Rinke-1/+3
cpptools
2024-05-24Use cwd from runnable.args for debuggerroife-3/+4
2024-05-24Revert "Debug use cargo workspace root as cwd. fixes #13022"roife-32/+12
This reverts commit 4ca86edac97d47eecb78b16abf255950c10b67ca.
2024-05-23Allow sysroots to only consist of the source root dirLukas Wirth-7/+0
2024-05-08Make term search fuel configurableTavo Annus-0/+12
2024-04-30docs: Fix typo in VS Code setting descriptionWilfred Hughes-1/+1
2024-04-26Show workspace info in the status barLukas Wirth-7/+10
2024-04-25Auto merge of #17021 - roife:add-hover-limits-for-adts, r=Veykrilbors-3/+12
Support hovering limits for adts Fix #17009 1. Currently, r-a supports limiting the number of struct fields displayed when hovering. This PR extends it to support enum variants and union fields. Since the display of these three (ADTs) is similar, this PR extends 'hover_show_structFields' to 'hover_show_adtFieldsOrVariants'. 2. This PR also resolved the problem that the layout of ADT was not restricted by display limitations when hovering on the Self type. 3. Additionally, this PR changes the default value of display limitations to `10` (instead of the original `null`), which helps users discover this feature.
2024-04-21Allow rust files to be used linkedProjectsLukas Wirth-0/+13008
2024-04-20Add hovering limitations support for variantsroife-2/+2
2024-04-19fix: add a separate setting for enum variantsroife-2/+11
2024-04-16fix: adjust the limitation for ADTs' fields to 5roife-1/+1
2024-04-16Update tests and docs for hover_show_adtFieldsOrVariantsroife-3/+3
2024-04-16Add config hover_show_adtFieldsOrVariants to handle hovering limitation for ADTsroife-0/+13005