【教學】 如何修改 visudo 的預設編輯器
sudo update-alternatives --config editor
選擇要使用的編輯器
輸入數字 "3"後,按 Enter。完成修改
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 10 manual mode
Press enter to keep the current choice[*], or type selection number: 3
(選項) 一次性使用 Vim 編輯 Visudo
那假如不想改編輯器,單純只想本次用 vim
修改呢 ? 那可以試試以下指令
export VISUAL=vim; visudo
留言