zoukankan      html  css  js  c++  java
  • vs code 必备插件

    ctrl+shift+p 调用搜索帮助

    搜索format   寻找格式化文档快捷键

    文件类型一目了然    vscode-icons

    高效管理项目    project-manager   

    自动格式化代码        beautify

    一键搭建各类语言的学习测试环境       code runner     

    chrome 联动调试                  debugger for chrome    //launch  独立启动    //  attach 附到当前进程中

    实时检测代码中规范与代码错误     eslint        全局运行   npm install -g eslint             // eslint --init

        解决VSCODE"因为在此系统上禁止运行脚本"报错

          1. 以管理员身份运行vscode;
          2. 执行:get-ExecutionPolicy,显示Restricted,表示状态是禁止的;
          3. 执行:set-ExecutionPolicy RemoteSigned;
          4. 这时再执行get-ExecutionPolicy,就显示RemoteSigned;

    提升 React 等前端开发的效率   npm

                    npm Intellisense

                    path Intellisense

                    IntelliSense for CSS class names

                    TypeScript Hero 

    集成并美化你的终端到vscode         Terminal 

        放到配置文件json中

          "terminal.external.osxExec": "iTerm.app",

          "terminal.inergrated.fontFamily": "Source Code Pro for PowerLine",

          "terminal.integrated.cursorStyle": "line",   

    颜色主题:  One Monokai

     

  • 相关阅读:
    SDOI2020游记
    Git和GitHub详解
    P1251 餐巾计划问题
    P2824 [HEOI2016/TJOI2016]排序
    P3224 [HNOI2012]永无乡
    P3605 [USACO17JAN]Promotion Counting晋升者计数
    P4314 CPU监控
    P2939 [USACO09FEB]改造路Revamping Trails
    P4254 [JSOI2008]Blue Mary开公司
    P1772 [ZJOI2006]物流运输
  • 原文地址:https://www.cnblogs.com/webmc/p/12108458.html
Copyright © 2011-2022 走看看