Update vscode README with a small features list

This commit is contained in:
Lukas Wirth 2021-03-01 11:07:15 +01:00
parent 5df3ee8274
commit 91ff47ef6a
3 changed files with 46 additions and 0 deletions

View file

@ -39,6 +39,15 @@ pub struct Declaration {
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(
sema: &Semantics<RootDatabase>,
position: FilePosition,