vscode编辑器
插件
- Auto Close Tag 自动关闭标签
- Auto Rename Tag 自动修改标签
- Bracket Pair Colorizer 多层括号不同颜色显示
- EditorConfig for VSCode 统一编辑器配置
- ESlint js代码检查
- htmlhint html代码检查
- File Icons 导航栏文件图标
- OneDark-Pro 主题
- Path Intellisense 路径提示/路径补全
- Prettier 代码格式化
- Sublime Text Keymap sublime快捷键
- Vetur vue的插件
- {
- /*编辑器默认配置 */
- "editor.minimap.enabled": true,
- "editor.lineHeight": 20,
- "editor.fontSize": 14,
- "editor.wordWrap": "on",
- "editor.fontFamily": "Fira Code",
- "editor.fontLigatures": true,
- "editor.minimap.renderCharacters": false,
- /* vue文件支持emmnt */
- "emmet.syntaxProfiles": {
- "vue-html": "html",
- "vue": "html"
- },
- /* 配置文件关联 */
- "files.associations": {
- "*.vue": "vue"
- },
- /* 失去焦点自动保存 */
- "files.autoSave": "onFocusChange",
- "[vue]": {},
- /* 使用cmder */
- "terminal.external.windowsExec": "D://SystemDrivers//cmder",
- "workbench.iconTheme": "file-icons",
- /* sublime 配置项 */
- "sublimeTextKeymap.promptV3Features": true,
- /* 多光标编辑冲突修复 */
- "editor.multiCursorModifier": "ctrlCmd",
- "editor.snippetSuggestions": "top",
- "editor.formatOnPaste": true,
- "python.formatting.provider": "yapf",
- /* 使用one Dark*/
- "workbench.colorTheme": "One Dark Pro",
- /* one Dark侧栏配置 */
- "workbench.colorCustomizations": {
- "tab.activeBackground": "#282c34",
- "activityBar.background": "#282c34",
- "editorGroup.background": "#282c34",
- "sideBar.background": "#282c34"
- },
- // "vetur.format.defaultFormatter.js": "vscode-typescript",
- "javascript.format.enable": false,
- "editor.tabSize": 2,
- /* 每次保存的时候自动格式化 */
- "editor.formatOnSave": true,
- /* 每次保存的时候将代码按eslint格式进行修复 */
- "eslint.autoFixOnSave": false,
- /* 双引号变单引号 */
- "prettier.singleQuote": true,
- /* js语句结尾删除分号 */
- "prettier.semi": false,
- /* 让prettier使用eslint的代码格式进行校验 */
- "prettier.eslintIntegration": true,
- /* 让函数(名)和后面的括号之间加个空格 */
- "eslint.validate": [
- "javascript",
- "javascriptreact",
- {
- "language": "vue",
- "autoFix": true
- }
- ],
- "window.zoomLevel": 0
- }
- 最新版本
- {
- "sublimeTextKeymap.promptV3Features": true,
- "editor.multiCursorModifier": "ctrlCmd",
- "editor.snippetSuggestions": "top",
- "editor.formatOnPaste": true,
- "editor.wordWrap": "on",
- "git.autofetch": true,
- "editor.cursorStyle": "block",
- "editor.lineHeight": 24,
- "editor.minimap.enabled": false,
- "editor.renderIndentGuides": ;
- "editor.rulers": [
- 120
- ],
- "editor.quickSuggestions": {
- "other": true,
- "comments": true,
- "strings": true
- },
- /*稀有字体*/
- "editor.fontFamily": "Fira Code",
- " editor.fontLigatures": true,
- /* 使用one Dark*/
- "workbench.colorTheme": "One Dark Pro",
- /* one Dark侧栏配置 */
- // "workbench.colorCustomizations": {
- // "tab.activeBackground": "#282c34",
- // "activityBar.background": "#282c34",
- // "editorGroup.background": "#282c34",
- // "sideBar.background": "#282c34"
- // },
- /* 失去焦点自动保存 */
- "files.autoSave": "onFocusChange",
- /* 每次保存的时候自动格式化 */
- "editor.formatOnSave": true,
- /* 双引号变单引号 */
- "prettier.singleQuote": true,
- /* js语句结尾删除分号 */
- "prettier.semi": false,
- "vetur.format.defaultFormatter.html": "prettier",
- /* 让prettier使用eslint的代码格式进行校验 */
- // "prettier.eslintIntegration": true,
- }
vscode编辑器的更多相关文章
- 解决Vscode编辑器不能打开多标签页问题
问题描述:编辑代码时,初用vscode,不能打开多个文件:每打开一个文件,都会替换前面一个文件标签,很不方便切换编码: 想要的效果: 解决方式: 方法一: 找到setting.json文件,最外层花括 ...
- 开发工具之Vscode编辑器
Visual Studio Code(以下简称vscode)是一个轻量且强大的代码编辑器,支持Windows,OS X和Linux.内置JavaScript.TypeScript和Node.js支持, ...
- vscode 编辑器常用快捷键
最近,打算换个编辑器,而 vscode 是一个不错的选择.大部分快捷键和 sublime 还是很像的,但有些也不一样.特此整理一份小笔记. 参考: vscode: Visual Studio Code ...
- VSCode编辑器编写Python代码
如何用VSCode愉快的写Python https://code.visualstudio.com/ 在学习Python的过程中,一直没有找到比较趁手的第三方编辑器,用的最多的还是Python自带 ...
- wepy - 使用vsCode编辑器安装插件
完成后,高亮以及智能补全代码. 1. 首先ctrl+shift+p打开扩展,安装以下三个插件 2. 复制以下文件内容到你的vsCode配置 files.associations { "fil ...
- vscode编辑器自定义配置
{ //删除文件确认 "explorer.confirmDelete": false, // 主题 "workbench.iconTheme": "v ...
- vscode编辑器中文乱码问题
设置配置自动格式化: "[javascriptreact]": { "editor.defaultFormatter": "esbenp.pretti ...
- golang安装及vscode编辑器配置
安装Go语言及搭建Go语言开发环境 下载 下载地址:https://studygolang.com/dl 系统选择: 根据不同系统下载安装包: 安装 Windows MAC安装 点开可执行程序 下一步 ...
- Win7环境下搭建Go开发环境,基于VSCode编辑器
一.在搭建的时候参考以下文章 http://www.cnblogs.com/zsy/archive/2016/02/28/5223957.html http://blog.csdn.net/hil20 ...
随机推荐
- 并不对劲的复健训练-CF1187D
题目大意 有两个长度为\(n\)的序列\(a_1,...,a_n\),\(b_1,...,b_n\)(\(a,b\leq n\leq 3\times 10^5\) ).一次操作是选取 \([l,r]\ ...
- how to Simply Singleton Navigate the deceptively simple Singleton pattern---reference
http://www.javaworld.com/article/2073352/core-java/simply-singleton.html JAVA DESIGN PATTERNS By Dav ...
- 树莓派安装Firefox+Selenium+geckodriver
相关参考博客[Selenium]Raspbian+Selenium+Firefoxfirefox.geckodriver.exe.selenium-server-standlone版本对应及下载地址树 ...
- [C#.net]C#如何解析json文本文件
C#解析Json字符串,可以借助Newtonsoft.Json将Json字符串序列化为对象,再从对象中获取值 Newtonsoft.Json.JsonConvert.DeserializeObject ...
- 【zhifu】web开发中的支付宝支付和微信支付
一.支付类型: 支付宝支付: 支付宝app内的网页支付: app外(即普通浏览器)网页支付: 微信支付: 微信app内的支付(在这里叫公众号支付) app外的支付(微信H5支付): 微信公众号的支付宝 ...
- centos7安装nginx服务
Nginx发音引擎x是一个免费的开源高性能HTTP和反向代理服务器,负责处理互联网上一些最大的网站的负载. 本教程将教你如何在你的CentOS Linux 7.5机器上安装和管理Nginx. 安装Ng ...
- mqtt协议实现 java服务端推送功能(三)项目中给多个用户推送功能
接着上一篇说,上一篇的TOPIC是写死的,然而在实际项目中要给不同用户 也就是不同的topic进行推送 所以要写活 package com.fh.controller.information.push ...
- sqlserver关于发布订阅replication_subscription的总结
(转载)sqlserver关于发布订阅replication_subscription的总结 来自 “ ITPUB博客 ” ,原文地址:http://blog.itpub.net/30126024/v ...
- Java高并发程序设计学习笔记(八):NIO和AIO
转自:https://blog.csdn.net/dataiyangu/article/details/87214773 什么是NIOBuffer && ChannelBuffer举个 ...
- Win7系统打开防火墙出现0x6D9错误的解决方法
防火墙是Windows系统内的一道屏障,开启防火墙可以对系统起到一定的保护作用,可以说非常重要.但是有些Win7系统用户在开启防火墙时会被系统提示出现0x6D9的错误代码,从而不能打开防火墙. 当我们 ...