นี่เป็นไฟล์. reg ของฉันสำหรับ Vim แต่ค่อนข้างชัดเจนเพียงแทนที่ Vim related string ด้วย Sublime's จากนั้นบันทึกเป็นไฟล์. 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
ค่าเฉลี่ยตัวสุดท้ายหมายถึงอะไรและไม่พบสิ่งใดที่เกี่ยวข้อง
แก้ไข:
สำหรับการติดตั้งเริ่มต้นของ Sublime Text 2 บน Windows 7 นี่คือรหัสเต็ม บันทึกเป็น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\""