$ sudo update-alternatives --config editor
There are 4 choices for the alternative editor (providing /usr/bin/editor).
Selection Path Priority Status
------------------------------------------------------------
0 /bin/nano 40 auto mode
1 /bin/ed -100 manual mode
2 /bin/nano 40 manual mode
* 3 /usr/bin/vim.basic 30 manual mode
4 /usr/bin/vim.tiny 15 manual mode
Press <enter> to keep the current choice[*], or type selection number:
我通常使用以下方式全局配置此行为
update-alternatives
:我已经选择了 Vim,但
nano
它是 Ubuntu 的默认设置。3
在我的示例中,如果尚未选择 Vim,您将键入以选择它。此外
less
,任何调用编辑器(例如sudoedit
)的程序现在都应该调用选定的程序。要使其永久化,只需在终端中执行以下操作:
这会将行添加到您
.bashrc
每次打开终端窗口时都会调用的文件中。要回答为什么即使在添加之前有类似的行也会起作用,这
.bashrc
很简单。.bashrc
是以线性方式读取和执行的脚本,并且此方法将此行添加为所有其他行的最后一行,因此它作为最后一个执行/评估。因此,如果之前有一行EDITOR
变量的值将被您添加的行覆盖。或者,如果您不想造成混乱,您也可以使用您最喜欢的编辑器(vi、vim、nano、joe 等)进行此更改,如果不存在则添加一行,如果存在则编辑它。
您需要将其添加到您的
.bashrc
文件中,使用nano
or打开它vi
并添加以下行: