- 积分
- 117977
- 威望
-
- 金钱
-
- 注册时间
- 2009-4-24
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
Debian终端下默认编辑器为nano,比如使用crontab -e命令时就会打开nano,如果想想修改为vim(需已安装,执行apt-get install vim安装),过程如下:
执行命令:update-alternatives --config editor
执行后有如下提示:- root@vpser:~# update-alternatives --config editor
- There are 3 choices for the alternative editor (providing /usr/bin/editor).
- Selection Path Priority Status
- ------------------------------------------------------------
- * 0 /bin/nano 40 auto mode
- 1 /bin/nano 40 manual mode
- 2 /usr/bin/vim.basic 30 manual mode
- 3 /usr/bin/vim.tiny 10 manual mode
- Press enter to keep the current choice[*], or type selection number:
复制代码 然后选择/usr/vim/vim.basic,输入2回车就行了。
vim.basic是完全版的vim。
vim.tiny为精简版不支持高亮等功能。
ubuntu下的话执行命令:select-editor |
|