Results 104 issues of A4-Tacks

**rust-analyzer version**: `rust-analyzer 1.77.0-nightly (bf8716f1 2023-12-24)` **rustc version**: `rustc 1.77.0-nightly (bf8716f1c 2023-12-24)` **editor or extension**: Vim 9.1 **code snippet to reproduce**: ```rust struct X(T); impl X { fn foo(&self) {}...

C-bug

close https://github.com/neoclide/coc-snippets/issues/347 in INSERT mode run `call coc#snippet#select(#{line:0,character:1}, #{line:0,character:1}, "a")` settings: `selection=inclusive` expect select first column, but it selected second column

#### For bugs - Rule Id: SC2154 - My shellcheck version: ```bash ShellCheck - shell script analysis tool version: 0.9.0 license: GNU General Public License, version 3 website: https://www.shellcheck.net ```...

If your pull request is **not** translation or serverlist-related, read the list of requirements below and check each box: - [x] I have read the [contribution guidelines](https://github.com/Anuken/Mindustry/blob/master/CONTRIBUTING.md). - [x] I...

```rust peg::parser!(grammar g() for [u8] { rule x() = b"\xff" // invalid UTF-8, can not use str }); ``` `b"\xff"` is not valid UTF-8

### What it does Simplify the code ### Advantage - Remove unnecessary braces ### Drawbacks _No response_ ### Example ```rust use std::iter::{self}; ``` Could be written as: ```rust use std::iter;...

A-lint

### What it does Make the code more concise ### Advantage - Less code - simple ### Drawbacks _No response_ ### Example ```rust pub fn foo(iter: impl Iterator) -> bool...

A-lint

**rust-analyzer version**: rust-analyzer 1.80.0 (05147895 2024-07-21) **rustc version**: rustc 1.80.0 (051478957 2024-07-21) **editor or extension**: Vim **code snippet to reproduce**: ```rust fn foo() { struct X; impl X fo {...

E-easy
A-completion
C-bug

**rust-analyzer version**: rust-analyzer 1.82.0-nightly (7c2012d0 2024-07-26) **rustc version**: rustc 1.82.0-nightly (7c2012d0e 2024-07-26) **editor or extension**: Vim 9.1 coc-rust-analyzer **relevant settings**: ```json { "rust-analyzer.updates.checkOnStartup": false, "rust-analyzer.lens.references.method.enable": true } ``` **code snippet...

C-support

**rust-analyzer version**: rust-analyzer 1.80.0 (05147895 2024-07-21) **rustc version**: rustc 1.80.0 (051478957 2024-07-21) **editor or extension**: Vim 9.1 coc-rust-analyzer **code snippet to reproduce**: ```rust macro_rules! x { ($r#break:tt) => { $break...

E-easy
A-macro
C-bug