惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
V
Visual Studio Blog
Martin Fowler
Martin Fowler
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
I
InfoQ
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
B
Blog
MongoDB | Blog
MongoDB | Blog
人人都是产品经理
人人都是产品经理
量子位
Hugging Face - Blog
Hugging Face - Blog
月光博客
月光博客

博客园 - meetrice

XygoAdmin 学习笔记 iterm2配置千问ai 自用大模型响应速度不完全评测 apple script 激活指定的vscode的窗口,以‘notes’开头的窗口 RSS平台需求分析报告 uniapp 打包 ios 问题 360加固uniapp Link Symbol Comment 在注释中跳转到函数的vs插件(已开源) mac 下最好的五笔输入法 小企鹅输入法 FCITX uniapp 使用原生号码一键认证后,安卓改名流程 mac 的任务栏 Windows-Style Taskbar For macOS keyboard Maestro Editor 的Applescript 打开终端执行命令 高性价比算力平台恒源云 显卡3090-24G 只要0.94元/小时,安装千问Qwen2.5-VL-7B进行图片理解 上手全记录 AI自主交互功能的大模型协同框架 广告图像分类算法 xcv mac mini m4常用配置 claude code windows设置 gpt5的主要升级有哪些 mac mini m4 用putty连接中文乱码 echo 'export LANG="zh_CN.UTF-8"'>> ~/.zshrc source ~/.zshrc
vscode cursor 必装插件
meetrice · 2026-02-05 · via 博客园 - meetrice

必装插件

1. Database Client

数据库客户端管理工具/SSH 客户端

image

2.Git History

image

支持快捷键打开表的插件

3. gitdoc

"GitDoc: Enable"在保存时自动AI生成总结(依赖copilot插件,否则只生成日期) 提交/推送/拉取更改

 4.Vue (Syntax Highlight)

https://open-vsx.org/extension/znck/vue

5.vue-helper(shenjiaolong)

https://marketplace.visualstudio.com/items?itemName=shenjiaolong.vue-helper

从code插件市场下载,下载工具

https://github.com/mjmirza/Download-VSIX-From-Visual-Studio-Market-Place/

6.Highlight Matching Tag

image

"highlight-matching-tag.styles": {
  "opening": {
    "full": {
      "custom": {
        "dark": {
          "borderWidth": "0 0 1px 0",
          "borderColor": "white",
          "borderStyle": "solid",
          "borderRadius": "4px",
          "right": "10px"
        },
        "light": {
          "borderWidth": "0 0 2px 0",
          "borderColor": "brown",
          "borderStyle": "solid",
          "borderRadius": "4px",
          "right": "10px"
        }
      }
    }
  },
  "closing": {
    "full": {
      "custom": {
        "dark": {
          "borderWidth": "0 0 1px 0",
          "borderColor": "white",
          "borderStyle": "solid",
          "borderRadius": "4px",
          "right": "10px"
        },
        "light": {
          "borderWidth": "0 0 2px 0",
          "borderColor": "brown",
          "borderStyle": "solid",
          "borderRadius": "4px",
          "right": "10px"
        }
      }
    }
  }
},

7.vue-format

8.Run on Save

保存特定文件时触发运行脚本

"emeraldwalk.runonsave": {
    "commands": [
        {
            "match": "\\.js$",
            "isAsync": false,
            "cmd": "/Volumes/SSD4T/pro/www/upload2oss.command"
        }
    ]
},

 9 . Run Selected Text In Terminal

image

 10.  Select by Indent 

选中相同缩进块代码,用于python

image