Advanced Formula Environment merupakan bagian dari add-ins Excel Labs yang digunakan untuk membuat, mengubah, dan menggunakan ulang formula dan fungsi LAMBDA.
Visual Studio Code Key Bindings
| Command | Key | Command id |
|---|---|---|
| Cut line (empty selection) | Ctrl+X | editor.action.clipboardCutAction |
| Copy line (empty selection) | Ctrl+C | editor.action.clipboardCopyAction |
| Paste | Ctrl+V | editor.action.clipboardPasteAction |
| Delete Line | Ctrl+Shift+K | editor.action.deleteLines |
| Insert Line Below | Ctrl+Enter | editor.action.insertLineAfter |
| Insert Line Above | Ctrl+Shift+Enter | editor.action.insertLineBefore |
| Move Line Down | Alt+Down | editor.action.moveLinesDownAction |
| Move Line Up | Alt+Up | editor.action.moveLinesUpAction |
| Copy Line Down | Shift+Alt+Down | editor.action.copyLinesDownAction |
| Copy Line Up | Shift+Alt+Up | editor.action.copyLinesUpAction |
| Undo | Ctrl+Z | undo |
| Redo | Ctrl+Y | redo |
| Add Selection To Next Find Match | Ctrl+D | editor.action.addSelectionToNextFindMatch |
| Move Last Selection To Next Find Match | Ctrl+K Ctrl+D | editor.action.moveSelectionToNextFindMatch |
| Undo last cursor operation | Ctrl+U | cursorUndo |
| Insert cursor at end of each line selected | Shift+Alt+I | editor.action.insertCursorAtEndOfEachLineSelected |
| Select all occurrences of current selection | Ctrl+Shift+L | editor.action.selectHighlights |
| Select all occurrences of current word | Ctrl+F2 | editor.action.changeAll |
| Select current line | Ctrl+L | expandLineSelection |
| Insert Cursor Below | Ctrl+Alt+Down | editor.action.insertCursorBelow |
| Insert Cursor Above | Ctrl+Alt+Up | editor.action.insertCursorAbove |
| Jump to matching bracket | Ctrl+Shift+\ | editor.action.jumpToBracket |
| Indent Line | Ctrl+] | editor.action.indentLines |
| Outdent Line | Ctrl+[ | editor.action.outdentLines |
| Go to Beginning of Line | Home | cursorHome |
| Go to End of Line | End | cursorEnd |
| Go to End of File | Ctrl+End | cursorBottom |
| Go to Beginning of File | Ctrl+Home | cursorTop |
| Scroll Line Down | Ctrl+Down | scrollLineDown |
| Scroll Line Up | Ctrl+Up | scrollLineUp |
| Scroll Page Down | Alt+PageDown | scrollPageDown |
| Scroll Page Up | Alt+PageUp | scrollPageUp |
| Fold (collapse) region | Ctrl+Shift+[ | editor.fold |
| Unfold (uncollapse) region | Ctrl+Shift+] | editor.unfold |
| Fold (collapse) all subregions | Ctrl+K Ctrl+[ | editor.foldRecursively |
| Unfold (uncollapse) all subregions | Ctrl+K Ctrl+] | editor.unfoldRecursively |
| Fold (collapse) all regions | Ctrl+K Ctrl+0 | editor.foldAll |
| Unfold (uncollapse) all regions | Ctrl+K Ctrl+J | editor.unfoldAll |
| Add Line Comment | Ctrl+K Ctrl+C | editor.action.addCommentLine |
| Remove Line Comment | Ctrl+K Ctrl+U | editor.action.removeCommentLine |
| Toggle Line Comment | Ctrl+/ | editor.action.commentLine |
| Toggle Block Comment | Shift+Alt+A | editor.action.blockComment |
| Find | Ctrl+F | actions.find |
| Replace | Ctrl+H | editor.action.startFindReplaceAction |
| Find Next | Enter | editor.action.nextMatchFindAction |
| Find Previous | Shift+Enter | editor.action.previousMatchFindAction |
| Select All Occurrences of Find Match | Alt+Enter | editor.action.selectAllMatches |
| Toggle Find Case Sensitive | Alt+C | toggleFindCaseSensitive |
| Toggle Find Regex | Alt+R | toggleFindRegex |
| Toggle Find Whole Word | Alt+W | toggleFindWholeWord |
| Toggle Use of Tab Key for Setting Focus | Ctrl+M | editor.action.toggleTabFocusMode |
| Toggle Render Whitespace | unassigned | toggleRenderWhitespace |
| Toggle Word Wrap | Alt+Z | editor.action.toggleWordWrap |