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

  • 相关阅读:
    python之名称空间
    python之对象(实例)
    python之类
    python之类和对象
    python之面向对象的程序设计
    python之函数联系
    Python之函数第三篇
    python之列表和生成器表达式篇
    网络基本概念
    Git
  • 原文地址:https://www.cnblogs.com/dingzk/p/6061437.html
Copyright © 2011-2022 走看看