use of com.perl5.lang.perl.idea.manipulators.PerlStringContentManipulator in project Perl5-IDEA by Camelcade.
the class PerlLightTestCase method setUp.
@Override
protected void setUp() throws Exception {
super.setUp();
myDisposable = Disposer.newDisposable();
EditorColorsScheme scheme = EditorColorsManager.getInstance().getGlobalScheme();
myReadAttributes = scheme.getAttributes(EditorColors.SEARCH_RESULT_ATTRIBUTES);
myWriteAttributes = scheme.getAttributes(EditorColors.WRITE_SEARCH_RESULT_ATTRIBUTES);
ElementManipulators.INSTANCE.addExplicitExtension(PerlStringMixin.class, new PerlStringManipulator());
ElementManipulators.INSTANCE.addExplicitExtension(PerlStringBareMixin.class, new PerlBareStringManipulator());
ElementManipulators.INSTANCE.addExplicitExtension(PerlStringContentElement.class, new PerlStringContentManipulator());
setUpLibrary();
myCodeInsightSettings = Perl5CodeInsightSettings.getInstance().copy();
}
Aggregations