Skip to content

Instantly share code, notes, and snippets.

@gorkemozkaya
Last active May 6, 2020 23:23
Show Gist options
  • Save gorkemozkaya/3334e1dccb399195f13aebe8f1aef53b to your computer and use it in GitHub Desktop.
Save gorkemozkaya/3334e1dccb399195f13aebe8f1aef53b to your computer and use it in GitHub Desktop.
VSCode Config
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "cmd+enter"
"command": "workbench.action.terminal.runSelectedText",
"when": "editorTextFocus"
}
,{
"key": "ctrl+enter",
"command": "multiCommand.sendToScala",
"when": "editorTextFocus"
}
]
// Place your settings in this file to overwrite the default settings
{
"editor.tabSize": 2,
"editor.formatOnType": true,
"editor.scrollBeyondLastLine": false,
"files.exclude": {
"**/.tmp": true,
"vendor": true,
"**/.git": true,
"**/.DS_Store": true,
"go-build/.go": true,
"**/*.test": true,
"Godeps/_workspace": true,
"**/coverage.html": true,
"**/_build": true
},
"files.trimTrailingWhitespace": true,
"files.autoSave": "onFocusChange",
"multiCommand.commands": [
{
"command": "multiCommand.sendToScala",
"interval": 30,
"sequence": [
{
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": ":paste\u000A"
}
},
"workbench.action.terminal.runSelectedText",
"workbench.action.terminal.focus",
{
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "\u0004"
}
}
]
}
]
}
cymonk.sql-formatter
daltonjorge.scala
geddski.macros
GrapeCity.gc-excelviewer
huizhou.githd
itryapitsin.Scala
josephtbradley.hive-sql
ms-vscode.Go
ms-azuretools.vscode-docker
ms-mssql.mssql
ms-python.anaconda-extension-pack
ms-python.python
ms-vscode.cpptools
redhat.java
redhat.vscode-yaml
ryuta46.multi-command
VisualStudioExptTeam.vscodeintellicode
vscjava.vscode-java-debug
vscjava.vscode-java-dependency
vscjava.vscode-java-pack
vscjava.vscode-java-test
vscjava.vscode-maven
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment