Create a library with specific kind Follow
How to create library like
<library.type implementation="com.intellij.plugins.haxe.ide.library.HaxeLibraryType"/>
?
LibraryTable libraryTable = ProjectLibraryTable.getInstance(myModule.getProject());
LibraryTable.ModifiableModel libraryTableModifiableModel = libraryTable.getModifiableModel();
Library library = libraryTableModifiableModel.createLibrary("3,3,5");
This does creates some regular lib, and plugin can't provide completion for it(only can show files in search everywhere)
Please sign in to leave a comment.