2018年3月30日 星期五

[Linux 文章收集] How to change visudo editor from nano to vim? (Ubuntu)

Source From Here 
Question 
When I use visudo, it always opens it with nano editor. How to change the editor to vim

How-To 
Type sudo update-alternatives --config editor 

You will get a text like below. 
  1. There are 4 choices for the alternative editor (providing /usr/bin/editor).  
  2.   
  3.   Selection    Path                Priority   Status  
  4. ------------------------------------------------------------  
  5. 0            /bin/nano            40        auto mode  
  6.   1            /bin/ed             -100       manual mode  
  7.   2            /bin/nano            40        manual mode  
  8.   3            /usr/bin/vim.basic   30        manual mode  
  9.   4            /usr/bin/vim.tiny    10        manual mode  
  10.   
  11. Press enter to keep the current choice[*], or type selection number: 3  
Find vim.basic or vim.tiny selection number. Type it and press enter. Next time when you open visudo your editor will be vim

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...