-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdoom.reg
54 lines (47 loc) · 2.58 KB
/
doom.reg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Windows Registry Editor Version 5.00
;; Be sure to set the correct path to Emacs on your system
[HKEY_CURRENT_USER\Software\Classes\*\shell]
;; Open file in existing frame
[HKEY_CURRENT_USER\Software\Classes\*\shell\emacsopen1sameframe]
@="&Emacs: Edit in existing window"
"icon"="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe"
[HKEY_CURRENT_USER\Software\Classes\*\shell\emacsopen1sameframe\command]
@="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe -n -a \"\" \"%1\""
;; Open file in new frame
[HKEY_CURRENT_USER\Software\Classes\*\shell\emacsopen2newframe]
@="&Emacs: Edit in new window"
"icon"="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe"
[HKEY_CURRENT_USER\Software\Classes\*\shell\emacsopen2newframe\command]
@="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe -c -n -a \"\" \"%1\""
;; Dired for desktop background
[HKEY_CURRENT_USER\Software\Classes\DesktopBackground\shell\emacsopensameframe]
@="&Emacs: Open in dired"
"icon"="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe"
[HKEY_CURRENT_USER\Software\Classes\DesktopBackground\shell\emacsopensameframe\command]
@="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe -n -a \"\" \"%v\""
;; Dired for directory
[HKEY_CURRENT_USER\Software\Classes\Directory\shell\emacsopensameframe]
@="&Emacs: Open in dired"
"icon"="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe"
[HKEY_CURRENT_USER\Software\Classes\Directory\shell\emacsopensameframe\command]
@="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe -n -a \"\" \"%V\""
;; Dired for directory background
[HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\emacsopensameframe]
@="&Emacs: Open in dired"
"icon"="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe"
[HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\emacsopensameframe\command]
@="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe -n -a \"\" \"%V\""
;; Dired for drive background
[HKEY_CURRENT_USER\Software\Classes\Drive\Background\shell\EmacsOpenDirSameFrame]
@="&Emacs: Open in dired"
"icon"="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe"
[HKEY_CURRENT_USER\Software\Classes\Drive\Background\shell\EmacsOpenDirSameFrame\command]
;; as drives haven't space inside their name don't use quoting
@="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe -n -a \"\" %L"
;; Dired for drive
[HKEY_CURRENT_USER\Software\Classes\Drive\shell\EmacsOpenDirSameFrame]
@="&Emacs: Open in dired"
"icon"="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe"
[HKEY_CURRENT_USER\Software\Classes\Drive\shell\EmacsOpenDirSameFrame\command]
;; as drives haven't space inside their name don't use quoting
@="C:\\Users\\info\\scoop\\shims\\emacsclientw.exe -n -a \"\" %L"