Visual Studio Code基础设置

开发工具

20-2-10 23:07:49

 安装后设置中文

【查看】--【扩展】(Ctrl+Shift+X) 

      在扩展:商店中输入Chinese,搜索到 适用于 VS Code 的中文(简体)语言包,点击安装;  重启OK


文件去除bom头

点击右下角    通过编码保存 选择utf-8 即可

代码提示快捷键设置  

文件--首选项--快捷键 

默认是得快捷键是Ctrl+space  和windows系统默认设置冲突!所以你按了也调用不出来!

我设置 ALT+ /  


快捷键

ctrl + z 回退代码

ctrl +y 前进代码

ctrl + / 行代码注释切换
Alt + Shit + A; 块注释

ctrl +g 跳转到某行

ctrl + f 查询

ctrl + h 替换

ctrl + 回车   下方插入一行

ctrl + shift + 回车 上方插入一行

ctrl + shift +  f 文件夹查询

Alt + Shit + F  格式化 


行复制:Ctrl + c。当你没有选中行中任意字符时,复制出来的实际上是整行的内容;
行移动:Alt + ↑/↓。想整体移动一行怎么办?剪切粘贴?Alt 加方向键轻松移动一行!注意,如果你扩选多行时,相应地会移动多行;
行复制:Shift + Alt + ↑/↓。想在某行的基础上修改?复制粘贴?Shift 加 Alt 加方向键一步到位!
 
 
https://www.cnblogs.com/hellofangfang/p/10511193.html
 

插件

css peek html和css关联
prettier 代码格式化
auto rename tag  自动修改标签
html boilerplate  快捷html模板   
color info 颜色调节   在颜色上调节颜色
auto close tag 自动闭合标签   输入</ 自动补全
html css support html 中css提示   

PHP IntelliSense    php代码提示



配置 PHP IntelliSense
文件 - 首选项 - 设置 - 扩展 - PHP IntelliSense - 在 settings.json 中编辑
配置项中加入 php 可执行文件路径
  

 "php.executablePath":"D:/tools/phpStudy/phpstudy_pro/Extensions/php/php7.1.9nts/php.exe",
 "php.validate.executablePath":"D:/tools/phpStudy/phpstudy_pro/Extensions/php/php7.1.9nts/php.exe"

重新启动 VSCode