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""

  • 相关阅读:
    [Next] 六.next的优化
    [Next] 五.next自定义内容
    Mac解决端口占用
    [Next] 四.在next中引入redux
    [Next] 服务端渲染知识补充
    [Next] 三.next自定义服务器和路由
    哪些使用UDP、TCP、IP协议
    IDEA配置git
    ssm整合配置
    git传输远程仓库
  • 原文地址:https://www.cnblogs.com/dingzk/p/6061437.html
Copyright © 2011-2022 走看看