zoukankan      html  css  js  c++  java
  • Win10 VS Code添加到右键菜单

    vscode添加到右键菜单,win10系统

    1、新建文件test.reg,(名字可以随便取,后缀得是reg)
    2、复制一下代码,到文件中
    3、替换“D:\software\Microsoft VS Code”为自己的安装目录【注意:路径分割是双\,如果你是从资源管理器中复制的地址的话是但个,会出错】,转义
    4、保存退出
    5、双击文件图标,运行就可以了
     
    Windows Registry Editor Version 5.00
    
    
    
    [HKEY_CLASSES_ROOT*shellVSCode]
    
    @="Open with Code"
    
    "Icon"="D:\software\Microsoft VS Code\Code.exe"
    
    
    
    [HKEY_CLASSES_ROOT*shellVSCodecommand]
    
    @=""D:\software\Microsoft VS Code\Code.exe" "%1""
    
    
    
    Windows Registry Editor Version 5.00
    
    
    
    [HKEY_CLASSES_ROOTDirectoryshellVSCode]
    
    @="Open with Code"
    
    "Icon"="D:\software\Microsoft VS Code\Code.exe"
    
    
    
    [HKEY_CLASSES_ROOTDirectoryshellVSCodecommand]
    
    @=""D:\software\Microsoft VS Code\Code.exe" "%V""
    
    
    
    Windows Registry Editor Version 5.00
    
    
    
    [HKEY_CLASSES_ROOTDirectoryBackgroundshellVSCode]
    
    @="Open with Code"
    
    "Icon"="D:\software\Microsoft VS Code\Code.exe"
    
    
    
    [HKEY_CLASSES_ROOTDirectoryBackgroundshellVSCodecommand]
    
    @=""D:\software\Microsoft VS Code\Code.exe" "%V""

    转载:https://www.cnblogs.com/dreamer-lin/p/13376311.html

  • 相关阅读:
    Iscroll滑动无效
    原生js 无缝滚动组件
    原生 js dialog弹窗组件
    html5 历史管理
    html5拖拽属性
    highcharts 数据图设置X轴间隔显示效果
    highcharts柱状图含有正负柱设置不同颜色的方法
    移动端滑动插件 swiper
    千分位添加和去掉方法
    dubbo常用类和路径
  • 原文地址:https://www.cnblogs.com/pingming/p/14874165.html
Copyright © 2011-2022 走看看