標籤:
今天決定卸載notepad++,裝上vim,逼自己熟悉vim的操作。卸載很簡單,由於是綠色安裝,刪除檔案夾就可以了。不過為了方便使用,當初安裝的時候改了下註冊表,配了個環境變數。因此也要相應的刪掉。配置是很簡單的,不過還是做個備忘,我是個健忘的人。理解了配置的原理,可以舉一反三安裝很多其他的工具。
先看看notepad++的介紹,直接引用官網上的原句,基於GPL協議(這裡還是呼籲各位同學在使用軟體時,要尊重著作權):
Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL License.【1】
個人偏好zip包,下載解壓。我一般都放在??d:/opt/npp??下面,因為linux我也這麼放,減輕記憶負擔。
配置環境變數,將d:/opt/npp添加到path中。為了方便命令列調用,我還拷貝了notepad++.exe並重新命名成npp.exe。這樣就可以再命令列中用npp調用了。
修改註冊表,添加右鍵菜單。(將以下指令碼儲存成.reg檔案雙擊匯入,如果任性進regedit手寫也行)
Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\*\shell\NotePad++]@="用&Notepad++開啟""Icon"="D:\\opt\\npp\\Notepad++.exe"[HKEY_CLASSES_ROOT\*\shell\NotePad++\Command]@="D:\\opt\\npp\\Notepad++.exe \"%1\""
附上卸載指令碼【2】(卸載還是進regedit直接刪來的方便):
Windows Registry Editor Version 5.00[-HKEY_CLASSES_ROOT\*\shell\NotePad++]
參考資料:
【1】notepad++官網 https://notepad-plus-plus.org/
【2】給notepad++添加右鍵菜單 http://www.cnblogs.com/mq0036/p/3815728.html
紀念notepad++