index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
tools
/
rust-analyzer
/
crates
/
ide-assists
Age
Commit message (
Expand
)
Author
Lines
2025-09-26
Merge pull request #20748 from A4-Tacks/migrate-arith-op-prec
Shoyu Vanilla (Flint)
-12
/
+15
2025-09-26
Merge pull request #20599 from A4-Tacks/bang-de-morgan
Shoyu Vanilla (Flint)
-7
/
+28
2025-09-26
Migrate `replace_arith_op` assist to use `SyntaxEditor`
A4-Tacks
-12
/
+15
2025-09-26
Merge pull request #20611 from A4-Tacks/replace-arith-op-prec
Shoyu Vanilla (Flint)
-1
/
+22
2025-09-26
Merge pull request #20731 from A4-Tacks/expand-rest-pat-in-tuple-slice-pat
Shoyu Vanilla (Flint)
-19
/
+289
2025-09-26
Fix expand rest pattern in tuple and slice pattern
A4-Tacks
-19
/
+289
2025-09-26
Merge pull request #20598 from A4-Tacks/let-chain-sup-conv-to-guarded-ret
Shoyu Vanilla (Flint)
-45
/
+252
2025-09-26
Merge pull request #20736 from A4-Tacks/fix-invert-if-let-chain
Shoyu Vanilla (Flint)
-0
/
+12
2025-09-25
Add applicable in closure for convert_to_guarded_return
A4-Tacks
-5
/
+49
2025-09-25
Fix not applicable for if-expr in let-stmt
A4-Tacks
-6
/
+28
2025-09-25
Add let-chain support for convert_to_guarded_return
A4-Tacks
-38
/
+179
2025-09-24
Fix applicable on if-let-chain for invert_if
A4-Tacks
-0
/
+12
2025-09-23
Merge pull request #20543 from sgasho/fix/19443_replace_match_with_if_let
Shoyu Vanilla (Flint)
-1
/
+23
2025-09-23
Merge pull request #20730 from A4-Tacks/migrate-expand-rest-pat
Shoyu Vanilla (Flint)
-12
/
+11
2025-09-23
Migrate `expand_record_rest_pattern` assist to use `SyntaxEditor`
A4-Tacks
-12
/
+11
2025-09-23
Make Field::ty return TypeNs
jackh726
-3
/
+6
2025-09-22
Merge pull request #20592 from A4-Tacks/add-braces-closure-in-match
Shoyu Vanilla (Flint)
-2
/
+31
2025-09-22
Merge pull request #20722 from A4-Tacks/pull-assign-up-inner-if
Shoyu Vanilla (Flint)
-0
/
+35
2025-09-22
Fix applicable on underscore for bind_unused_param
A4-Tacks
-3
/
+30
2025-09-22
Fix apply in internal if for pull_assignment_up
A4-Tacks
-0
/
+35
2025-09-21
Fix not applicable on trailing comma for remove_dbg
A4-Tacks
-1
/
+16
2025-09-20
Merge pull request #20709 from A4-Tacks/destruct-panic-on-not-add-deref-and-p...
Shoyu Vanilla (Flint)
-2
/
+48
2025-09-20
Merge pull request #20686 from A4-Tacks/gen-default-not-apply-selected
Shoyu Vanilla (Flint)
-0
/
+46
2025-09-20
Fix selected multi variants applicable generate_default_from_enum_variant
A4-Tacks
-0
/
+46
2025-09-20
Merge pull request #20688 from A4-Tacks/fix-applicable-after-l-curly-replace-...
Shoyu Vanilla (Flint)
-0
/
+18
2025-09-20
Merge pull request #20700 from A4-Tacks/extract-var-let-expr
Shoyu Vanilla (Flint)
-1
/
+28
2025-09-20
Fix panic `!self.data().mutable` for destructure_struct_binding
A4-Tacks
-2
/
+48
2025-09-20
Fix panics on `Foo{mut x}` for destructure_struct_binding
A4-Tacks
-9
/
+96
2025-09-19
Merge pull request #20701 from A4-Tacks/track-caller-assist-test
Chayim Refael Friedman
-0
/
+1
2025-09-19
Add `#[track_caller]` for check_assist_by_label
A4-Tacks
-0
/
+1
2025-09-19
Fix extract_variable on LetExpr
A4-Tacks
-1
/
+28
2025-09-18
Fix applicable after l_curly for replace_is_method_with_if_let_method
A4-Tacks
-0
/
+18
2025-09-18
Merge pull request #20664 from ChayimFriedman2/coerce-ns
Chayim Refael Friedman
-4
/
+5
2025-09-17
Merge pull request #20682 from A4-Tacks/fix-change-vis-applicable-on-variant
Shoyu Vanilla (Flint)
-0
/
+14
2025-09-17
Fix applicable on variant field for change_visibility
A4-Tacks
-0
/
+14
2025-09-16
Merge pull request #20517 from Veykril/veykril/push-wrurmtqppzus
Lukas Wirth
-55
/
+63
2025-09-16
fix: Only compute unstable paths on nightly toolchains for IDE features
Lukas Wirth
-55
/
+63
2025-09-15
Port a bunch of stuff from rustc and fix a bunch of type mismatches/diagnostics
Chayim Refael Friedman
-4
/
+5
2025-09-11
Fix empty generic param list for generate_function
A4-Tacks
-1
/
+30
2025-09-07
Improve make::struct_ field_list whitespace
A4-Tacks
-22
/
+22
2025-09-05
Fix precedence parenthesis for replace_arith_op
A4-Tacks
-1
/
+22
2025-09-03
Add applicable on bang `!` for apply_demorgan
A4-Tacks
-7
/
+28
2025-09-03
Fix closure in match not applicable for add_braces
A4-Tacks
-2
/
+31
2025-08-27
fix: Prevent invalid transformation in 'Replace match with if let' assist
sgasho
-1
/
+23
2025-08-26
Merge pull request #20534 from A4-Tacks/tog-macro-delim-semicolon
Shoyu Vanilla (Flint)
-3
/
+33
2025-08-26
Merge pull request #20509 from A4-Tacks/fix-move-guard-to-arm-indent
Shoyu Vanilla (Flint)
-13
/
+57
2025-08-25
Merge pull request #20423 from ShoyuVanilla/import-2024
Chayim Refael Friedman
-12
/
+12
2025-08-25
Fix ExprStmt delete semicolon for toggle_macro_delimiter
A4-Tacks
-3
/
+33
2025-08-24
Merge pull request #20512 from A4-Tacks/arith-op-not-on-selected
Chayim Refael Friedman
-1
/
+16
2025-08-24
replace_arith_op not applicable on selected
A4-Tacks
-1
/
+16
[next]