Raspberry Pi(ラズベリーパイ)のデフォルトのエディターを変更する方法について紹介します。
デフォルトのエディターを変更する方法①
「sudo update-alternatives –set editor プログラム」で指定したプログラム(エディタ)をデフォルトに変更できます。
例えば、vim.basicに変更したい場合は以下のとおりです。
$ sudo update-alternatives --set editor /usr/bin/vim.basic
デフォルトのエディターを変更する方法②
以下のコマンドを実行し、デフォルトのエディタを選択して設定することもできます。
$ 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 10 manual mode Press enter to keep the current choice[*], or type selection number: 4 update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/editor (editor) in manual mode
上記は、「4 /usr/bin/vim.basic 」に変更しています。
$ 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 10 manual mode Press enter to keep the current choice[*], or type selection number:
変更の確認
$ 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 10 manual mode
Press enter to keep the current choice[*], or type selection number:
関連ページ
ラズベリーパイ4・5の使い方と応用例
ラズベリーパイ4・5の使い方や応用例について入門者向けにまとめてみました。
コメント