转到VScode

2022-12-28 11:03:47 浏览数 (1)

放弃atom,投入巨硬的怀抱。

整合命令行

Command Palette (⇧⌘P)

代码语言:javascript复制
shell command : install

常用插件

vscode-nginx Dockerfile and Docker Compose File (yml) Support Python Go Laravel Blade Snippets Vim Visual Studio Code Settings Sync beautify Markdown PDF

主题

Hacker Style Themes Material-theme vscode-icons

快捷键

文件-首选项-键盘快捷方式

代码语言:javascript复制
[
    {
        "key": "ctrl d",
        "command": "editor.action.copyLinesDownAction",
        "when": "editorTextFocus"
    },
    {
        "key": "ctrl shift up",
        "command": "editor.action.moveLinesUpAction",
        "when": "editorTextFocus"
    },
    {
        "key": "ctrl shift down",
        "command": "editor.action.moveLinesDownAction",
        "when": "editorTextFocus"
    }
]

0 人点赞