How to create a right-click context shell shortcut “edit with Emacs”?

前端 未结 8 827
离开以前
离开以前 2021-01-30 11:22

Notepad++ automatically adds a shell shortcut so that when you\'re in Windows Explorer, you can right-click on a file and select \"edit with Notepad++\". How can I do the same w

8条回答
  •  悲&欢浪女
    2021-01-30 12:14

    This site explains how to do it with another app. Just change the path and you should be all set.

    Create this key/value:

    [HKEY_CLASSES_ROOT\*\shell\Edit with AppName\command]
    @=”\”C:\\Program Files\\Notepad2\\Notepad2.exe\” \”%1\”"
    

    Here's another reference, which is a little easier to follow.

提交回复
热议问题