이것은 Vim의 .reg 파일이지만 Vim 관련 문자열을 Sublime으로 바꿉니다. 그런 다음 .reg 파일로 저장하고 두 번 클릭하여 가져옵니다.
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\vim]
@="&Vim here"
[HKEY_CLASSES_ROOT\Directory\shell\vim\command]
@="\"C:\\Program Files (x86)\\Vim\\vim73\\gvim.exe\" \"%1\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\vim]
@="&Vim here"
[HKEY_CLASSES_ROOT\Directory\Background\shell\vim\command]
@="\"C:\\Program Files (x86)\\Vim\\vim73\\gvim.exe\" \"%V\""
이 개 폴더의 상황에 맞는 메뉴가 있습니다, 하나는 처음 두 줄의 폴더에 직접 마우스 오른쪽 버튼으로 클릭은이고, 또 다른 하나는 에 마지막 두 줄의 빈 영역을 마우스 오른쪽 버튼으로 클릭, 폴더. 나는 마지막 %V
의미 가 무엇인지 알지 못하고 관련된 것을 찾지 못했습니다.
편집하다:
Windows 7에 Sublime Text 2를 기본 설치하는 경우 전체 코드는 다음과 같습니다. 다른 이름으로 저장 whatever.reg
하고 두 번 클릭하십시오.
Windows Registry Editor Version 5.00
; This will make it appear when you right click ON a folder
; The "Icon" line can be removed if you don't want the icon to appear
[HKEY_CLASSES_ROOT\Directory\shell\sublime]
@="Open Folder as &Sublime Project"
"Icon"="\"C:\\Program Files\\Sublime Text 2\\sublime_text.exe\",0"
[HKEY_CLASSES_ROOT\Directory\shell\sublime\command]
@="\"C:\\Program Files\\Sublime Text 2\\sublime_text.exe\" \"%1\""
; This will make it appear when you right click INSIDE a folder
; The "Icon" line can be removed if you don't want the icon to appear
[HKEY_CLASSES_ROOT\Directory\Background\shell\sublime]
@="Open Folder as &Sublime Project"
"Icon"="\"C:\\Program Files\\Sublime Text 2\\sublime_text.exe\",0"
[HKEY_CLASSES_ROOT\Directory\Background\shell\sublime\command]
@="\"C:\\Program Files\\Sublime Text 2\\sublime_text.exe\" \"%V\""