V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
hizhengfu
V2EX  ›  编辑器

window下右键菜单sublime打开文件

  •  
  •   hizhengfu · Oct 12, 2012 · 6193 views
    This topic created in 4950 days ago, the information mentioned may be changed or developed.
    保存如下内容为xx.bat文件,放入sublime程序文件夹然后运行即可:
    @echo Off
    :START
    CLS
    echo *=========================================================================*
    echo * *
    echo * [A]添加右键菜单 *
    echo * [D]删除右键菜单 *
    echo * [Q]退出 *
    echo * *
    echo *=========================================================================*
    Set /P Choice=       请选择要进行的操作 (A/D/Q) ,然后按回车:
    If /I "%Choice%"=="A" Goto :ADD
    If /I "%Choice%"=="D" Goto :DEL
    If /I "%Choice%"=="Q" Exit

    START

    :ADD
    CLS
    echo Windows Registry Editor Version 5.00> tmp.reg
    echo [HKEY_CLASSES_ROOT\*\shell]>> tmp.reg
    echo [HKEY_CLASSES_ROOT\*\shell\SublimeText2]>> tmp.reg
    echo @="SublimeText2">> tmp.reg
    echo [HKEY_CLASSES_ROOT\*\shell\SublimeText2\Command]>> tmp.reg
    set str=%cd%
    echo @="%str:\=\\%\\sublime_text.exe %%1">> tmp.reg
    echo *=========================================================================*
    echo * *
    echo * 正在将生成的注册信息写入注册表,请点击“是”键钮! *
    echo * *
    echo *=========================================================================*
    tmp.reg
    del tmp.reg
    GOTO :START

    :DEL
    echo Windows Registry Editor Version 5.00> tmp.reg
    echo [-HKEY_CLASSES_ROOT\*\shell\SublimeText2]>> tmp.reg
    tmp.reg
    del tmp.reg
    GOTO :START
    5 replies    1970-01-01 08:00:00 +08:00
    chairo
        1
    chairo  
       Oct 12, 2012
    安装时候有一个勾选项,人家自带这个功能的
    hizhengfu
        2
    hizhengfu  
    OP
       Oct 12, 2012
    @chairo 一直用便携版的,不知道还有这个选项了。
    Danfi
        3
    Danfi  
       Oct 12, 2012
    类似这样的操作,我基本用发送到
    hyq
        4
    hyq  
       Oct 12, 2012
    @Danfi 突然发现很多年没用过发送到功能了
    hizhengfu
        5
    hizhengfu  
    OP
       Oct 12, 2012
    @hyq 真是的,刚刚去确认了下发送到在win7上还存在没
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2174 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 35ms · UTC 00:26 · PVG 08:26 · LAX 17:26 · JFK 20:26
    ♥ Do have faith in what you're doing.