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

  • 相关阅读:
    了解DockerFile
    容器数据卷
    Docker镜像讲解
    Java语法学习笔记:多态
    决策树之分类与回归
    python数据分析回归算法
    python之斐波那契序列算法的总结
    pandas 关于数据分组和聚合
    pandas中关于数据合并join,merge
    scrapy爬虫之断点续爬,增量爬取,断网急救
  • 原文地址:https://www.cnblogs.com/dingzk/p/6061437.html
Copyright © 2011-2022 走看看