use of org.erlide.ui.editors.erl.ErlangSourceViewerConfiguration in project erlide_eclipse by erlang.
the class ErlangScratchPad method initializeEditor.
@Override
protected void initializeEditor() {
colorManager = new ColorManager();
setDocumentProvider(new TextFileDocumentProvider());
final IPreferenceStore store = ErlangScratchPad.getErlangEditorPreferenceStore();
setPreferenceStore(store);
final ErlangSourceViewerConfiguration cfg = new ErlangScratchPadConfiguration(getPreferenceStore(), colorManager, this);
setSourceViewerConfiguration(cfg);
}
Aggregations