今天决定卸载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
时间: 2024-10-29 00:23:09