mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-03 15:15:24 +00:00
Update vscode README with a small features list
This commit is contained in:
parent
5df3ee8274
commit
91ff47ef6a
3 changed files with 46 additions and 0 deletions
|
@ -39,6 +39,15 @@ pub struct Declaration {
|
||||||
pub access: Option<ReferenceAccess>,
|
pub access: Option<ReferenceAccess>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Feature: Find All References
|
||||||
|
//
|
||||||
|
// Shows all references of the item at the cursor location
|
||||||
|
//
|
||||||
|
// |===
|
||||||
|
// | Editor | Shortcut
|
||||||
|
//
|
||||||
|
// | VS Code | kbd:[Shift+Alt+F12]
|
||||||
|
// |===
|
||||||
pub(crate) fn find_all_refs(
|
pub(crate) fn find_all_refs(
|
||||||
sema: &Semantics<RootDatabase>,
|
sema: &Semantics<RootDatabase>,
|
||||||
position: FilePosition,
|
position: FilePosition,
|
||||||
|
|
|
@ -59,6 +59,15 @@ pub(crate) fn prepare_rename(
|
||||||
Ok(RangeInfo::new(range, ()))
|
Ok(RangeInfo::new(range, ()))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Feature: Rename
|
||||||
|
//
|
||||||
|
// Renames the item below the cursor and all of its references
|
||||||
|
//
|
||||||
|
// |===
|
||||||
|
// | Editor | Shortcut
|
||||||
|
//
|
||||||
|
// | VS Code | kbd:[F2]
|
||||||
|
// |===
|
||||||
pub(crate) fn rename(
|
pub(crate) fn rename(
|
||||||
db: &RootDatabase,
|
db: &RootDatabase,
|
||||||
position: FilePosition,
|
position: FilePosition,
|
||||||
|
|
|
@ -2,4 +2,32 @@
|
||||||
|
|
||||||
Provides support for rust-analyzer: novel LSP server for the Rust programming language.
|
Provides support for rust-analyzer: novel LSP server for the Rust programming language.
|
||||||
|
|
||||||
|
|
||||||
|
Features:
|
||||||
|
|
||||||
|
* [code completion], [imports insertion]
|
||||||
|
* [go to definition], [implementation], [type definition]
|
||||||
|
* [find all references], [workspace symbol search], [rename]
|
||||||
|
* [types and documentation on hover]
|
||||||
|
* [inlay hints]
|
||||||
|
* [semantic syntax highlighting]
|
||||||
|
* a lot of [assist(code actions)]
|
||||||
|
* apply suggestions from errors
|
||||||
|
* ... and many more, checkout the [manual] to see them all
|
||||||
|
|
||||||
|
[code completion]: https://rust-analyzer.github.io/manual.html#magic-completions
|
||||||
|
[imports insertion]: https://rust-analyzer.github.io/manual.html#auto-import
|
||||||
|
[go to definition]: https://rust-analyzer.github.io/manual.html#go-to-definition
|
||||||
|
[implementation]: https://rust-analyzer.github.io/manual.html#go-to-implementation
|
||||||
|
[type definition]: https://rust-analyzer.github.io/manual.html#go-to-type-definition
|
||||||
|
[find all references]: https://rust-analyzer.github.io/manual.html#find-all-references
|
||||||
|
[workspace symbol search]: https://rust-analyzer.github.io/manual.html#workspace-symbol
|
||||||
|
[rename]: https://rust-analyzer.github.io/manual.html#rename
|
||||||
|
[types and documentation on hover]: https://rust-analyzer.github.io/manual.html#hover
|
||||||
|
[inlay hints]: https://rust-analyzer.github.io/manual.html#inlay-hints
|
||||||
|
[semantic syntax highlighting]: https://rust-analyzer.github.io/manual.html#semantic-syntax-highlighting
|
||||||
|
[assist(code actions)]: https://rust-analyzer.github.io/manual.html#assists-code-actions
|
||||||
|
|
||||||
|
[manual]: https://rust-analyzer.github.io/manual.html
|
||||||
|
|
||||||
See https://rust-analyzer.github.io/ for more information.
|
See https://rust-analyzer.github.io/ for more information.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue