diff --git a/docs/default-keybindings.md b/docs/default-keybindings.md
index 065af99..acbff7d 100644
--- a/docs/default-keybindings.md
+++ b/docs/default-keybindings.md
@@ -400,6 +400,10 @@ Type: bindings
| ␣ w =
| Reset window sizes | command | `workbench.action.evenEditorWidths` |
| ␣ w [
| Shrink window | [transient](#shrink-window) | `workbench.action.decreaseViewSize` |
| ␣ w ]
| Enlarge window | [transient](#enlarge-window) | `workbench.action.increaseViewSize` |
+| ␣ w 1
| Single column window layout | command | `workbench.action.editorLayoutSingle` |
+| ␣ w 2
| Double column window layout | command | `workbench.action.editorLayoutTwoColumns` |
+| ␣ w 3
| Triple column window layout | command | `workbench.action.editorLayoutThreeColumns` |
+| ␣ w 4
| Grid window layout | command | `workbench.action.editorLayoutTwoByTwoGrid` |
| ␣ w d
| Close window | command | `workbench.action.closeEditorsInGroup` |
| ␣ w h
| Focus window left | command | `workbench.action.navigateLeft` |
| ␣ w j
| Focus window down | command | `workbench.action.navigateDown` |
@@ -760,7 +764,7 @@ Type: bindings
| ␣ m languageId:dart A
| Attach to process | command | `flutter.attachProcess` |
| ␣ m languageId:dart D
| Flutter doctor | command | `flutter.doctor` |
| ␣ m languageId:dart E
| Launch emulator | command | `flutter.launchEmulator` |
-| ␣ m languageId:dart P
| Profile app | command | `flutter.profileApp` |
+| ␣ m languageId:dart P
| Profile app | command | `flutter.runProfileMode` |
| ␣ m languageId:dart R
| Hot restart | command | `flutter.hotRestart` |
| ␣ m languageId:dart S
| Screenshot | command | `flutter.screenshot` |
| ␣ m languageId:dart =
| +Format | [bindings](#format) | N/A |
@@ -1647,7 +1651,6 @@ Type: bindings
| ␣ m languageId:dart o l
| DevTools logging | command | `dart.openDevToolsLogging` |
| ␣ m languageId:dart o m
| DevTools memory | command | `dart.openDevToolsMemory` |
| ␣ m languageId:dart o n
| DevTools network | command | `dart.openDevToolsNetwork` |
-| ␣ m languageId:dart o t
| Timeline | command | `flutter.openTimeline` |
# +Project/Packages
@@ -1682,14 +1685,13 @@ Key Binding: ␣ m languageId:dart t
Type: bindings
-| Key Binding | Name | Type | Command(s) |
-| ------------------------------------ | -------------------- | ------- | ---------------------------------------- |
-| ␣ m languageId:dart t c
| Clear test results | command | `dart.clearTestResults` |
-| ␣ m languageId:dart t d
| Debug test at cursor | command | `dart.debugTestAtCursor` |
-| ␣ m languageId:dart t f
| Run failed tests | command | `dart.runAllFailedTestsWithoutDebugging` |
-| ␣ m languageId:dart t r
| Run tests | command | `dart.runAllTestsWithoutDebugging` |
-| ␣ m languageId:dart t s
| Run skipped tests | command | `dart.runAllTestsWithoutDebugging` |
-| ␣ m languageId:dart t t
| Run test at cursor | command | `dart.runTestAtCursor` |
+| Key Binding | Name | Type | Command(s) |
+| ------------------------------------ | -------------------- | ------- | --------------------------- |
+| ␣ m languageId:dart t c
| Clear test results | command | `testing.clearTestResults` |
+| ␣ m languageId:dart t d
| Debug test at cursor | command | `testing.debugTestAtCursor` |
+| ␣ m languageId:dart t f
| Run failed tests | command | `testing.reRunFailTests` |
+| ␣ m languageId:dart t r
| Run tests | command | `testing.runAll` |
+| ␣ m languageId:dart t t
| Run test at cursor | command | `testing.runTestAtCursor` |
# +Peek