如何将 nvim 设置为默认编辑器(ranger 文件管理器)?

如何将 nvim 设置为默认编辑器(ranger 文件管理器)?

使用时游侠文件管理器中,我尝试打开任何配置文件,片刻之后,终端闪烁着说:

bin/sh/ nano not found

但在.bashrc文件中,nvim 定义为 $EDITOR。在 sh 中哪里可以配置 shell 默认编辑器?

答案1

您可以尝试使用update-alternatives来更改默认编辑器。这是您需要的命令。

sudo update-alternatives --config editor

预期输出如下:

There are 5 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/code        0         manual mode
  4            /usr/bin/vim.basic   30        manual mode
  5            /usr/bin/vim.tiny    15        manual mode

Press <enter> to keep the current choice[*], or type selection number: 

只需输入选择号码nvim就可以了。

相关内容