VSCode 重要配置和使用记录
Nginx 嵌套问题
- 不支持嵌套 IF
- 嵌套的 Location 不会应用外层 IF,但是 root、index、add_header 可以应用
Code 命令
1command palette -> shell command -> select: install 'code' command in PATH
配置文件自动换行规则
1"editor.wordWrap": "off"
快速变换:cmd -> wordWrap -> toggle
单独配置 markdown 自动换行:
1"[markdown]": {
2"editor.wordWrap": "on",
3},
当前工作区不显示 .gitignore 中忽略的文件
编辑: .vscode/settings.json
:
1{
2 "explorer.excludeGitIgnore": true,
3}
单击文件在新标签页打开
单击文件在新标签页打开 workbench.editor.enablePreview
为 false
使用多标签模式
Windows -> Native Tabs [v]
tabs 多行模式
workbench.editor.wrapTabs [v]