1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

VSCodeを入れたら最初にすること

Posted at

※随時更新

プラグインを入れる

Smart split into lines

複数行選択したらそれを複数カーソルに変えてくれる。(Sublime Textの cmd+shift+l に当たる機能)

ユーザー設定(settings.json)

{
    "java.home": "/Library/Java/JavaVirtualMachines/jdk-9.0.4.jdk/Contents/Home",
    "python.pythonPath": "python3",
    "explorer.confirmDragAndDrop": false,
    "window.zoomLevel": 0,
    "git.confirmSync": false,
    "git.autofetch": false,
    "explorer.confirmDelete": false,
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue"
}

キーバインドの設定(keybindings.json)

[
    {
        "key": "shift+cmd+l",
        "command": "smart.splitIntoLines",
        "when": "editorTextFocus"
    },
    {
        "key": "ctrl+cmd+u",
        "command": "editor.action.transformToUppercase"
    },
    {
        "key": "ctrl+cmd+l",
        "command": "editor.action.transformToLowercase"
    }
]
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?