Skip to content

Instantly share code, notes, and snippets.

@strengejacke
Last active August 6, 2022 16:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save strengejacke/a84caf94095f498fb552988edf4ee23a to your computer and use it in GitHub Desktop.
Save strengejacke/a84caf94095f498fb552988edf4ee23a to your computer and use it in GitHub Desktop.
keybindings for VS Code using R
[
{
"description": "R Build Docs",
"key": "ctrl+shift+d",
"command": "r.document",
"when": "resourceLangId == 'r'"
},
{
"description": "R Pipe Operator",
"key": "ctrl+shift+m",
"command": "type",
"args": {"text": " |> "},
"when": "editorLangId == r && editorTextFocus || editorLangId == rmd && editorTextFocus",
},
{
"description": "R Assignment Arrow",
"key": "alt+-",
"command": "type",
"args": {"text": " <- "},
"when": "editorLangId == r && editorTextFocus || editorLangId == rmd && editorTextFocus",
},
{
"description": "R Build Source Package",
"key": "ctrl+shift+b",
"command": "r.build",
"when": "resourceLangId == 'r'"
},
{
"description": "R Install Package",
"key": "ctrl+shift+i",
"command": "r.runCommand",
"args": "devtools::install(quick = FALSE, keep_source = TRUE, upgrade = FALSE)",
"when": "resourceLangId == 'r'"
},
{
"description": "R Create Reprex",
"key": "ctrl+shift+x",
"command": "r.runCommand",
"args": "reprex::reprex()",
"when": "resourceLangId == 'r'"
},
{
"key": "ctrl+shift+a",
"command": "editor.action.formatSelection",
"when": "editorHasDocumentSelectionFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+k ctrl+f",
"command": "-editor.action.formatSelection",
"when": "editorHasDocumentSelectionFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+oem_period",
"command": "-editor.action.quickFix",
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+oem_period",
"command": "workbench.action.showAllSymbols"
},
{
"key": "ctrl+t",
"command": "-workbench.action.showAllSymbols"
},
{
"key": "ctrl+shift+d",
"command": "-workbench.view.debug",
"when": "viewContainer.workbench.view.debug.enabled"
},
{
"key": "ctrl+shift+x",
"command": "-workbench.view.extensions",
"when": "viewContainer.workbench.view.extensions.enabled"
},
{
"description": "R Update Packages",
"key": "ctrl+shift+u",
"command": "r.runCommand",
"args": "vsCodeSnippets::update_R_packages()",
"when": "resourceLangId == 'r'"
},
{
"key": "ctrl+shift+u",
"command": "-workbench.action.output.toggleOutput",
"when": "workbench.panel.output.active"
}
]
@strengejacke
Copy link
Author

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