将编辑器添加到终端系统编辑器列表

将编辑器添加到终端系统编辑器列表

当您使用vipwcrontab或直接输入时select-editor,系统会显示已安装的编辑器列表。如何将自定义编辑器添加到该列表中?

答案1

要向 Debian 替代系统添加其他替代应用程序,请使用

sudo update-alternatives --install link name path priority

要添加其他编辑器,请运行以下命令:

sudo update-alternatives --install /usr/bin/editor editor /usr/bin/your-custom-editor 50

后面的第三项--install是自定义编辑器的可执行文件。第一项是加载所选编辑器的通用命令,第二项是备选应用程序组的名称。必须给出数字,表示优先级。

此后,您应该能够使用 或 选择您的自定义编辑sudo update-alternatives --config editorsudo select-editor

您可以详细了解Debian 替代系统在这里

相关内容