当前位置: 首页 > article >正文

vscode ctrl+/注释不了css

方式一.全部禁用插件排查问题.

方式二.打开首选项的json文件,注释掉setting.json,排查是哪一行配置有问题.

我的最终问题:需要将 "*.vue": "vue",改成"*.vue": "html",

"files.associations": {

        // "*.vue": "vue",

        "*.vue": "html",

        "*.wpy": "vue",

        "*.wxml": "html",

        "*.wxss": "css"

    },

参考配置:

{
    "files.associations": {
        // "*.vue": "vue",
        "*.vue": "html",
        "*.wpy": "vue",
        "*.wxml": "html",
        "*.wxss": "css"
    },
    //主题颜色 
    "explorer.confirmDelete": false,
    "editor.fontSize": 14,
    "window.zoomLevel": 1,
    "editor.detectIndentation": false,
    // 重新设定tabsize
    "editor.tabSize": 2,
    // #值设置为true时,每次保存的时候自动格式化;
    "editor.formatOnSave": false,
    "workbench.editor.enablePreview": false, // 关闭文件的预览模式
    "workbench.iconTheme": "material-icon-theme",
    // 在使用搜索功能时,将这些文件夹/文件排除在外
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        "**/target": true,
        "**/logs": true,
    },
    // 这些文件将不会显示在工作空间中
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/CVS": true,
        "**/.DS_Store": true,
        "**/*.js": {
            "when": "$(basename).ts" //ts编译后生成的js文件将不会显示在工作空中
        },
        "**/node_modules": true
    },
    "editor.suggest.snippetsPreventQuickSuggestions": true
}


http://www.kler.cn/a/421784.html

相关文章:

  • autoResultMap = true 作用, @TableName(value = ““, autoResultMap = true)
  • Zustand的学习和应用
  • LeetCode 64. 最小路径和(HOT100)
  • Day4:生信新手笔记 — R语言简单命令与Rstudio配置
  • Java - JSR223规范解读_在JVM上实现多语言支持
  • Flutter 之 InheritedWidget
  • Flink随笔 20241203 Flink重点内容
  • 使用matplotlib 库绘制曲线图~
  • HarmonyOS URL字符串解析 常用的几个方法
  • 用Python做数据分析环境搭建及工具使用(Jupyter)
  • SpringSecurity6
  • 【零基础学习UDS诊断测试】——0x10测试用例设计
  • 论文阅读:Deep Multi-View Subspace Clustering with Anchor Graph
  • Unity 模拟百度地图,使用鼠标控制图片在固定区域内放大、缩小、鼠标左键拖拽移动图片
  • 泷羽sec学习打卡-shell命令6
  • 【QNX+Android虚拟化方案】132 - QNX 系统内存、CPU负载监控
  • hdlbits系列verilog解答(exams/m2014_q4c)-88
  • R格式(高精度x低精度+四舍五入)
  • 【掩体计划——DFS+缩点】
  • C++ explicit关键字的作用
  • AI - 如何构建一个大模型中的Tool
  • HTMLCSS 奇幻森林:小熊的甜蜜蛋糕派对大冒险
  • 「Python数据科学」数据科学的概念及Python常用数据科学库
  • 青海摇摇了3天,技术退步明显.......
  • 云服务器和物理服务器租用哪个好?
  • 在Neo4j中导入多个csv文件