diff options
author | Lukas Wirth <[email protected]> | 2021-03-01 10:07:15 +0000 |
---|---|---|
committer | Lukas Wirth <[email protected]> | 2021-03-01 10:08:26 +0000 |
commit | 91ff47ef6ac55f66ca57a2b1ee2eae62f50213f2 (patch) | |
tree | b57ada424390564372fc8263c0a72fbfb9f6f040 /crates/ide/src/references | |
parent | 5df3ee8274fdb7cdeb2b0871b4efea8cbf4724a1 (diff) |
Update vscode README with a small features list
Diffstat (limited to 'crates/ide/src/references')
-rw-r--r-- | crates/ide/src/references/rename.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crates/ide/src/references/rename.rs b/crates/ide/src/references/rename.rs index 175ddd759..22ddeeae3 100644 --- a/crates/ide/src/references/rename.rs +++ b/crates/ide/src/references/rename.rs | |||
@@ -59,6 +59,15 @@ pub(crate) fn prepare_rename( | |||
59 | Ok(RangeInfo::new(range, ())) | 59 | Ok(RangeInfo::new(range, ())) |
60 | } | 60 | } |
61 | 61 | ||
62 | // Feature: Rename | ||
63 | // | ||
64 | // Renames the item below the cursor and all of its references | ||
65 | // | ||
66 | // |=== | ||
67 | // | Editor | Shortcut | ||
68 | // | ||
69 | // | VS Code | kbd:[F2] | ||
70 | // |=== | ||
62 | pub(crate) fn rename( | 71 | pub(crate) fn rename( |
63 | db: &RootDatabase, | 72 | db: &RootDatabase, |
64 | position: FilePosition, | 73 | position: FilePosition, |