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 with emacs? I am using GNU Emacs 22.3 for Windows.
|
4
|
|||
|
|
|
Here's what I have - similar to some other answer. Create a new text file somewhere called emacs-conextmenu.reg (or anything-you-want.reg) and paste the following in:
Change the path to your emacs installation path; remember to escape the "\" (whenever you have \, change that to \\). Now all you need to do is double-click this *.reg file in the explorer and you shall have a context menu entry for emacs for any file and any directory (if you are a dired fan!). Note that for this to work, emacs has to be started and emacs-server also has to be started (M-x server-start). I would suggest starting emacs with Windows and put (server-start) in your .emacs file. As a bonus, the following snippet for autohotkey (http://www.autohotkey.com/) will start the file selected in emacs when you press ctrl-shift-enter in windows explorer. This might be more handy if you edit lots of files in emacs but does not necessarily want to navigate to the file in emacs itself.
|
||
|
|
|
This site explains how to do it with another app. Just change the path and you should be all set. Create this key/value:
Here's another reference, which is a little easier to follow. |
||
|
|
|
|
If you're not up for spelunking the registry, you can do this from the Windows Explorer (instructions for any editor, not just Emacs):
Another option would be to put a shortcut to your editor's executable in your |
|||
|
|
|
|
Check out an Emacs distribution with Windows integration: http://ourcomments.org/Emacs/EmacsW32.html Its installer creates an Explorer menu entry which does what you want. |
|||
|
|
|
|
Here's is another way to do the same thing. Works in WinXP and Vista. Add this to your registery: edit-with-emacs.reg
Place this file in your emacs bin directory: launch-emacs-client.vbs
Note: the W32 installer runs a similar script on installation. |
|||
|
|
|
|
I want to add to polyglot's answer above -- the AutoHotkey shortcut he mentions is very handy, but the code is incomplete: the GetText() function was written by somebody on the AutoHotkey forum (http://www.autohotkey.com/forum/viewtopic.php?p=279576#279576), and it is:
Note that ClipWait delay might need to be modified: I had to set it to 2! |
||
|
|
