Skip to content

Add Imenu support for rust-mode. #10797

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 7, 2013
Merged

Conversation

pradeep90
Copy link
Contributor

  • Delete trailing whitespace.

@adrientetar
Copy link
Contributor

Hmm, I thought *.rc was the extension used in the early days of Rust?

@pradeep90
Copy link
Contributor Author

Oh! I guess you're right... Servo has a lot of .rc files and I thought rust-mode didn't support that.
I see that rust-mode was on for .rc files in some 2012 commit. So, it must have been removed in between.

I'll remove that.

+ Delete trailing whitespace.
@adrientetar
Copy link
Contributor

Well, if you look at the vim syntax file it's still supporting .rc but since it looks to be deprecated I think it's good to not add it.

@pradeep90
Copy link
Contributor Author

@adridu59 I have removed the support for rc from my pull request

@brson
Copy link
Contributor

brson commented Dec 6, 2013

Thanks, @pradeep90

bors added a commit that referenced this pull request Dec 7, 2013
@bors bors closed this Dec 7, 2013
@bors bors merged commit 48b289f into rust-lang:master Dec 7, 2013
flip1995 pushed a commit to flip1995/rust that referenced this pull request Jun 2, 2023
Improve pattern printing for manual_let_else

* Address a formatting issue pointed out in https://github.com/rust-lang/rust-clippy/pull/10175/files#r1137091002
* Replace variables inside | patterns in the if let: `let v = if let V::A(v) | V::B(v) = v { v } else ...`
* Support nested patterns: `let v = if let Ok(Ok(Ok(v))) = v { v } else ...`
* Support tuple structs with more than one arg: `let v = V::W(v, _) = v { v } else ...`; note that more than one *capture* is still not supported, so it bails for `let (v, w) = if let E::F(vi, wi) = x { (vi, wi)}`
* Correctly handle .. in tuple struct patterns: `let v = V::X(v, ..) = v { v } else ...`

- \[ ] Followed [lint naming conventions][lint_naming]
- \[x] Added passing UI tests (including committed `.stderr` file)
- \[x] `cargo test` passes locally
- \[ ] Executed `cargo dev update_lints`
- \[ ] Added lint documentation
- \[x] Run `cargo dev fmt`

[lint_naming]: https://rust-lang.github.io/rfcs/0344-conventions-galore.html#lints

---

changelog: [`manual_let_else`]: improve variable name in suggestions

Closes rust-lang#10431 as this PR is adding a test for the `mut` case.
flip1995 pushed a commit to flip1995/rust that referenced this pull request Jun 30, 2023
…shearth

manual_let_else: support struct patterns

This adds upon the improvements of rust-lang#10797 and:

* Only prints `()` around `Or` patterns at the top level (fixing a regression of rust-lang#10797)
* Supports multi-binding patterns: `let (u, v) = if let (Some(u_i), Ok(v_i)) = ex { (u_i, v_i) } else ...`
* Traverses through tuple patterns: `let v = if let (Some(v), None) = ex { v } else ...`
* Supports struct patterns: `let v = if let S { v, w, } = ex { (v, w) } else ...`

```
changelog: [`manual_let_else`]: improve pattern printing to support struct patterns
```

fixes rust-lang#10708
fixes rust-lang#10424
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants