JaroslavTulach opened a new pull request #3510: URL: https://github.com/apache/netbeans/pull/3510
VSNetBeans currently detects installation of MS Java ext pack and informs user it disables some services of it, code lenses and code completion. See [extension.ts:284](https://github.com/apache/netbeans/blob/f9c75266d97f86c4ae7eaa214ee31bb6164a283e/java/java.lsp.server/vscode/src/extension.ts#L284): ```js conf.update('java.test.editor.enableShortcuts', false, false).then(() => {}, disablingFailed); conf.update('java.debug.settings.enableRunDebugCodeLens', false, false).then(() => {}, disablingFailed); ``` This PR changes the behavior to more politely coexist with M$ Java extension. It asks the user to disable one of the extensions manually. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
