牙叔教程 简单易懂
我常用的脚本语言是js, python.
AutoHotkey v2 Language Support vscode-autohotkey-debug 由于工作有写重复, 要用到autohotkey, 所以装这个插件
Black Formatter 格式化python代码
Bookmarks 书签
change-case 命名方式: 小驼峰, 下划线, 等命名风格转换
Code Runner 右键直接运行代码, 可以设置用终端执行代码.
"code-runner.runInTerminal": true,
Code Spell Checker 单词拼写检查
Comment Divider 快速生成一行 分隔符
EditorConfig for VS Code 统一配置, 可以为js和python设置不同的空格数 js 一个tab两个空格 python 一个tab四个空格
# Editor configuration, see http://editorconfig.org # 表示是最顶层的 EditorConfig 配置文件 root = true [*] # 表示所有文件适用 end_of_line = lf # 控制换行类型(lf | cr | crlf) insert_final_newline = false # 在文件结尾插入新行 charset = utf-8 # 设置文件字符集为 utf-8 trim_trailing_whitespace = true # 删除一行中的前后空格 trim_trailing_whitespace = true # 去除行首的任意空白字符 max_line_length=120 [*] inden