zoukankan      html  css  js  c++  java
  • 配置VSCode右键菜单

    修改注册表,添加鼠标右键

    选择文件

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT*shellVSCode]
    @="Open with Code"
    "Icon"="D:\VSCode\Code.exe"

    [HKEY_CLASSES_ROOT*shellVSCodecommand]
    @=""D:\VSCode\Code.exe" "%1""

    选择目录

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOTDirectoryshellVSCode]
    @="Open with Code"
    "Icon"="D:\VSCode\Code.exe"

    [HKEY_CLASSES_ROOTDirectoryshellVSCodecommand]
    @=""D:\VSCode\Code.exe" "%V""

     

    目录空白处

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOTDirectoryBackgroundshellVSCode]
    @="Open with Code"
    "Icon"="D:\VSCode\Code.exe"

    [HKEY_CLASSES_ROOTDirectoryBackgroundshellVSCodecommand]
    @=""D:\VSCode\Code.exe" "%V""

     

    Atom的类似

    文件

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT*shellAtom]

    @="Open with Atom"

    "Icon"=""C:\Users\Administrator\AppData\Local\atom\app.ico""

    [HKEY_CLASSES_ROOT*shellAtomcommand]

    @=""C:\Users\Administrator\AppData\Local\atom\app-1.11.1\atom.exe" "%1""

    目录

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOTDirectoryshellAtom]
    @="Open with Atom"
    "Icon"=""C:\Users\Administrator\AppData\Local\atom\app.ico""

    [HKEY_CLASSES_ROOTDirectoryshellAtomcommand]
    @=""C:\Users\Administrator\AppData\Local\atom\app-1.11.1\atom.exe" "%1""

    目录空白处

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOTDirectoryBackgroundshellAtom]
    @="Open with Atom"
    "Icon"=""C:\Users\Administrator\AppData\Local\atom\app.ico""

    [HKEY_CLASSES_ROOTDirectoryBackgroundshellAtomcommand]
    @=""C:\Users\Administrator\AppData\Local\atom\app-1.11.1\atom.exe" "%V""

  • 相关阅读:
    vue-router 实践
    修改vue中<router-link>的默认样式
    JSON.parse() 与 JSON.stringify() 的区别
    JS 中的异步操作
    CSS3 box-sizing:border-box的好处
    element ui 栅格布局
    css overflow用法
    koa中间件机制
    canvas 入门
    前端面试题:淘宝首页用了多少种标签
  • 原文地址:https://www.cnblogs.com/dingzk/p/6061437.html
Copyright © 2011-2022 走看看