Nikolas Komonen
Nikolas Komonen
Fixes: #1194 Signed-off-by: Nikolas Komonen
### Background When creating an MR, a user could add in "WIP" to their GitLab MR title and the MR would be indicated as "work in progress". When the "WIP"...
Someone was able to setup lsp4xml on Sublime Text here: https://github.com/angelozerr/lsp4xml/issues/376#issuecomment-496517400 I haven't looked into it, but preferences may have to be setup on the client side. Tasks: - [x]...
Eg: ```xml ``` Will have a symbol outline looking like: ``` auth-constrait: id id ```
In JDT UI the QuickFix for "ImportNotFound is implemented slightly differently. https://github.com/eclipse/eclipse.jdt.ui/blob/master/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickFixProcessor.java#L366 JDT.ls (Current) ```java ... case IProblem.CannotImportPackage: case IProblem.ConflictingImport: case IProblem.ImportNotFound: ReorgCorrectionsSubProcessor.removeImportStatementProposals(context, problem, proposals); break; ... ``` JDT.UI ```java...