You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The core editor in VS Code is packed with features. This page highlights a number of them and lets you interactively try them out through the use of a number of embedded editors. For full details on the editor features for VS Code and more head over to our [documentation](command:workbench.action.openDocumentationUrl).
13
15
14
16
* [Multi-cursor Editing](#multi-cursor-editing) - block selection, select all occurrences, add additional cursors and more.
15
17
* [IntelliSense](#intellisense) - get code assistance and parameter suggestions for your code and external modules.
16
-
* [Line Actions](#line-actions) - quickly move lines around to re-order your code.${!isWeb ? `
18
+
* [Line Actions](#line-actions) - quickly move lines around to re-order your code.${!isServerless ? `
17
19
* [Rename Refactoring](#rename-refactoring) - quickly rename symbols across your code base.` : ''}
18
20
* [Formatting](#formatting) - keep your code looking great with inbuilt document & selection formatting.
19
21
* [Code Folding](#code-folding) - focus on the most relevant parts of your code by folding other areas.
@@ -72,7 +74,7 @@ Since it's very common to work with the entire text in a line we provide a set o
72
74
>**Tip:** Another very common task is to comment out a block of code - you can toggle commenting by pressing kb(editor.action.commentLine).
73
75
74
76
75
-
${!isWeb ? `
77
+
${!isServerless ? `
76
78
### Rename Refactoring
77
79
It's easy to rename a symbol such as a function name or variable name. Hit kb(editor.action.rename) while in the symbol |Book| to rename all instances - this will occur across all files in a project. You also have |Rename Symbol| in the right-click context menu.
0 commit comments