如何快速更换编辑器?

如何快速更换编辑器?

我刚刚下载Ninja IDE我真的很喜欢它的界面。

有没有办法配置 Quickly 应用,以便在我输入以下内容时在 Ninja IDE 中启动我的项目快速编辑

答案1

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打开的。添加到您的应该会使此更改持久。nanogeditexport EDITOR=nano~/.bashrc

答案2

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

export QUICKLY_EDITOR="yourpreferrededitorhere"

我在网上的某个地方发现了这一点,因此,我要感谢发现此解决方案的人。

干杯

相关内容