Skip to content

Instantly share code, notes, and snippets.

@uupaa
Last active November 13, 2017 04:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uupaa/14f1fbce705cba5630fb21664bcec8d8 to your computer and use it in GitHub Desktop.
Save uupaa/14f1fbce705cba5630fb21664bcec8d8 to your computer and use it in GitHub Desktop.
VSCode

install code cli (into command line)

https://code.visualstudio.com/docs/editor/command-line

ctrl+p
type: `> shell install

user settings

Mac path: ~/Library/Application\ Support/Code/User/settings.json

{
    "vim.disableAnnoyingNeovimMessage": true,
    "window.zoomLevel": 0,
    "editor.tabSize": 2
}

diff

code -d path1 path2

diff tool like usage

https://qiita.com/satokaz/items/55a3b076979e3f9d0e9b

keyboard shortcut settings

https://code.visualstudio.com/docs/getstarted/keybindings

Mac path: ~/Library/Application\ Support/Code/User/keybindings.json

[
  { "key": "ctrl+h", "command": "workbench.action.previousEditor" },
  { "key": "ctrl+l", "command": "workbench.action.nextEditor" },
  { "key": "ctrl+d", "command": "workbench.files.action.compareFileWith" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment