现在我正在使用python更改我工作区中.metadata/
下的设置文件。我需要找到这些文件中所需的每一行,因为我不想要任何不必要的内容。
例如,如果我想设置标签的宽度为4.我需要更改文件
.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefs
在工作区中并在其中添加一行,而不是简单地复制设置文件:
tabWidth=4
所以我想知道:我可以在eclipse插件中通过java代码设置这个值吗?如果可以的话,请给我相关的课程: - )
和,它比python的方法更复杂吗?
答案 0 :(得分:1)
在插件中,您可以使用:
IPreferenceStore store = new ScopedPreferenceStore(InstanceScope.INSTANCE, "org.eclipse.ui.editors");
store.setValue("tabWidth", 4);