I develop a custom editor for two file types. Everything work well, my action create good file extension with custom codeAssist.
In FppJSEditorExtension.java I add code for register my new MIME type and linked it with my new contentType.
`@Inject
protected void configureContentType(final OrionContentTypeRegistrant contentTypeRegistrant) {
// register content type and configure orion
final String contentTypeId = "application/fpp";
Hello,
I develop a custom editor for two file types. Everything work well, my action create good file extension with custom codeAssist. In FppJSEditorExtension.java I add code for register my new MIME type and linked it with my new contentType.
`@Inject protected void configureContentType(final OrionContentTypeRegistrant contentTypeRegistrant) { // register content type and configure orion final String contentTypeId = "application/fpp";
But nothing happen, highlighting doesn't work. Source code and assembly can be find here. Any help would be appreciate.
PS : @svenefftinge, as you develop the service for register new contentType and highlighting in orion, I thought you must be the guy who can help me.