如何快速更改编辑器?


Answers:


9

quickly应该支持EDITOR环境变量。

$ quickly help ubuntu-application edit
Usage: quickly edit

A convenience command to open all of your python files in your project 
directory in your default editor, ready for editing.

If you put yourself EDITOR or SELECTED_EDITOR environment variable, this latter
will be used. Also, if you configured sensible-editor, this one will be
choosed. 

我没有安装任何其他GUI IDE,但是我使用进行了测试,$ export EDITOR=nano && quickly edit并且所有文件都以nano代替gedit。添加export EDITOR=nano到您~/.bashrc应该使此更改持久。


谢谢。我是Linux新手:〜/表示根级别吗?在哪里可以找到.bashrc文件?
Nootrino

1
~/是当前用户主文件夹的简写。因此,如果您的用户名是“ nootrino”,则/home/nootrino/.bashrc文件将扩展为。大多数情况下,该文件从视图中隐藏,因为所有以点(“ .”)开头的文件或文件夹都是隐藏的。打开您的主文件夹,然后按Ctrl + h来显示这些隐藏的配置文件,通常称为“点文件”。
andrewsomething 2011年

4

如果您不想更改系统的默认编辑器,则可以使用

export QUICKLY_EDITOR="yourpreferrededitorhere"

我在网上的某个地方找到了这个,所以功劳归功于发现此解决方案的人。

干杯

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.