Last active
January 19, 2026 13:52
-
-
Save elias19r/2d9d8b3432fc2711cf252f67206d19e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "key": "cmd+w", | |
| "command": "-workbench.action.closeGroup", | |
| "when": "activeEditorGroupEmpty && multipleEditorGroups" | |
| }, | |
| { | |
| "key": "cmd+w", | |
| "command": "-workbench.action.closeWindow", | |
| "when": "!editorIsOpen && !multipleEditorGroups" | |
| }, | |
| { | |
| "key": "ctrl+; f", | |
| "command": "workbench.action.terminal.sendSequence", | |
| "args": { | |
| "text": "bin/rails test ${relativeFile}\u000D" | |
| } | |
| }, | |
| { | |
| "key": "ctrl+; c", | |
| "command": "workbench.action.terminal.sendSequence", | |
| "args": { | |
| "text": "bin/rails test ${relativeFile}:${lineNumber}\u000D" | |
| } | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment