如何快速更改Quickly的编辑器?

我刚刚下载了Ninja IDE,我真的很喜欢它的界面。
有没有办法配置Quickly应用程序,在我输入quickly edit时启动我的项目在Ninja IDE中?
2个回答

快速应该支持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

如果您不想更改系统的默认编辑器,您可以直接使用。
export QUICKLY_EDITOR="yourpreferrededitorhere"

我在网上找到了这个,所以要感谢发现这个解决方案的人。
干杯!