如何使用其他配置运行gedit


Answers:


5

目前似乎尚不支持此功能,请参阅此上游错误报告

但是,您可以为gedit创建包装器,该包装器可以通过gconftool-2设置所需的特定插件。

这看起来像:

#!/bin/bash
old_config=$(gconftool-2 --get "/apps/gedit-2/plugins/active-plugins")
gconftool-2 --set --type list --list-type string "/apps/gedit-2/plugins/active-plugins" "[$1]"
gedit
gconftool-2 --set --type list --list-type string "/apps/gedit-2/plugins/active-plugins" "$old_config"

现在将其保存在某个地方,例如。gedit_profile并使其可执行:

chmod +x  gedit_profile

要加载不同的配置文件,只需用您要启用的插件的逗号分隔列表来调用它,例如:

/path/to/gedit_profile "terminal,colorpicker"

[当然,您可以将其放入单独的启动器中。]


这可以更好地满足我的需要:#!/ bin / bash normalConfig = gconftool-2 -g“ / apps / gedit-2 / plugins / active-plugins” gconftool-2 -s --type list --list-type string“ / apps / gedit-2 / plugins / active-plugins“” [$ 1]“ gedit gconftool-2 -s --type list --list-type字符串” / apps / gedit-2 / plugins / active-plugins“” [ $ normalConfig]“
MetaDark 2010年

是的,那是高级版本(因此,我的回答中的“类似”部分:P)。
htorque 2010年

通过gconf设置值也可用于其他选项(例如配色方案)...由于新设置立即生效,因此仅添加几个菜External Tools单项(带有可选的快捷键)可能就适合(外部工具是标准插件)。 ..我对此感兴趣,因为我喜欢使用不同颜色设置的两个gedit实例的想法,但是我不认为gedit允许并发实例:(
Peter.O 2010年
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.