Skip to content

Instantly share code, notes, and snippets.

@condef5
Created January 25, 2024 19:28
Show Gist options
  • Save condef5/39f69a82eeb42667060d74048f203193 to your computer and use it in GitHub Desktop.
Save condef5/39f69a82eeb42667060d74048f203193 to your computer and use it in GitHub Desktop.
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+cmd+numpad1",
"command": "workbench.action.terminal.sendSequence",
"description": "run rspec in current file",
"args": {
"text": "rt ${relativeFile}\u000D"
}
},
{
"key": "cmd+m",
"command": "workbench.action.terminal.sendSequence",
"description": "run rspec in current file",
"args": {
"text": "rt ${relativeFile}\u000D"
}
},
{
"key": "ctrl+cmd+numpad0",
"command": "workbench.action.terminal.sendSequence",
"description": "run rspec in current line with specific file",
"args": {
"text": "rt ${relativeFile}:${lineNumber}\u000D"
}
},
{
"key": "shift+cmd+m",
"command": "workbench.action.terminal.sendSequence",
"description": "run rspec in current line with specific file",
"args": {
"text": "rt ${relativeFile}:${lineNumber}\u000D"
}
},
{
"key": "ctrl+cmd+numpad2",
"command": "workbench.action.terminal.sendSequence",
"description": "run ruby file",
"args": {
"text": "ruby ${relativeFile}\u000D"
}
},
{
"key": "shift+cmd+9",
"command": "search.action.openNewEditor"
}
]
@condef5
Copy link
Author

condef5 commented Mar 18, 2024

GOOGLE_OAUTH_CLIENT_ID=309704315910-1l95t14rmtb4633ncq2jc5eivica7qpq.apps.googleusercontent.com
GOOGLE_OAUTH_CLIENT_SECRET=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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment