rust-analyzer/crates
A4-Tacks 5f8cfeb3f4
fix: convert_integer_literal not on selected
`convert_integer_literal` can only convert the first literal,
it is not reasonable to apply it when selected

Example
---

```rust
fn main() {
    $01+1$0;
}
```

**Assist old outputs**:

```
Convert 1 to 0b1
Convert 1 to 0o1
Convert 1 to 0x1
Replace arithmetic with call to checked_*
Replace arithmetic with call to saturating_*
Replace arithmetic with call to wrapping_*
Extract into variable
Extract into constant
Extract into static
Extract into function
```

**Assist this PR outputs**:

```
Replace arithmetic with call to checked_*
Replace arithmetic with call to saturating_*
Replace arithmetic with call to wrapping_*
Extract into variable
Extract into constant
Extract into static
Extract into function
```
2025-08-22 17:13:30 +08:00
..
base-db When renaming a parameter to self, change callers to use method call syntax 2025-08-02 21:39:22 +03:00
cfg cargo clippy --fix 2025-07-31 10:55:10 +02:00
edition chore: Bump Edition::CURRENT to 2024 2025-03-17 12:29:19 +01:00
hir Merge Trait and TraitAlias handling 2025-08-13 15:28:08 +08:00
hir-def fix errors after rebase 2025-08-13 15:33:08 +08:00
hir-expand When renaming a parameter to self, change callers to use method call syntax 2025-08-02 21:39:22 +03:00
hir-ty add comment 2025-08-15 05:04:41 +00:00
ide Merge pull request #20376 from fee1-dead/traitalias 2025-08-13 08:27:54 +00:00
ide-assists fix: convert_integer_literal not on selected 2025-08-22 17:13:30 +08:00
ide-completion Merge pull request #20390 from A4-Tacks/if-else-comp-in-args-or-let 2025-08-13 16:44:39 +00:00
ide-db Merge Trait and TraitAlias handling 2025-08-13 15:28:08 +08:00
ide-diagnostics Implement next trait solver 2025-08-09 16:08:58 +00:00
ide-ssr Implement next trait solver 2025-08-09 16:08:58 +00:00
intern Implement next trait solver 2025-08-09 16:08:58 +00:00
load-cargo cargo clippy --fix 2025-07-31 10:55:10 +02:00
mbe cargo clippy --fix 2025-07-31 10:55:10 +02:00
parser feat: hint at unterminated strings in unknown prefix errors 2025-08-14 19:30:29 +02:00
paths Don't run doctests 2025-06-23 00:50:22 +03:00
proc-macro-api Add version command to proc-macro-srv 2025-07-31 10:10:50 +02:00
proc-macro-srv Reorganize proc-macro-srv 2025-07-31 09:55:07 +02:00
proc-macro-srv-cli Add version command to proc-macro-srv 2025-07-31 10:10:50 +02:00
profile Implement next trait solver 2025-08-09 16:08:58 +00:00
project-model remove duplicate field in Debug 2025-08-08 23:46:28 +02:00
query-group-macro Implement next trait solver 2025-08-09 16:08:58 +00:00
rust-analyzer Use a more specific error message when talking about the server logs 2025-08-15 20:15:21 +03:00
span Merge Trait and TraitAlias handling 2025-08-13 15:28:08 +08:00
stdx Don't run doctests 2025-06-23 00:50:22 +03:00
syntax Merge Trait and TraitAlias handling 2025-08-13 15:28:08 +08:00
syntax-bridge remove P 2025-08-09 15:47:01 +08:00
test-fixture cargo clippy --fix 2025-07-31 10:55:10 +02:00
test-utils Merge pull request #20329 from jackh726/next-trait-solver-querify 2025-08-13 06:10:45 +00:00
toolchain Don't run doctests 2025-06-23 00:50:22 +03:00
tt cargo clippy --fix 2025-07-31 10:55:10 +02:00
vfs Bump salsa 2025-07-03 10:05:16 +02:00
vfs-notify cargo clippy --fix 2025-07-31 10:55:10 +02:00