You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2020/10/26 07:17:44 UTC

[GitHub] [netbeans] JaroslavTulach opened a new pull request #2492: Avoid conflicts with other Java extensions

JaroslavTulach opened a new pull request #2492:
URL: https://github.com/apache/netbeans/pull/2492


   Apache NetBeans Language Server extension isn't the only Java supporting
   extension. To avoid duplicated code completion and other misleading clashes
   the extension disables certain functionality known to cause problems. This
   behavior can be disabled by setting `netbeans.conflict.check` setting to `false`.


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] JaroslavTulach merged pull request #2492: Avoid conflicts with other Java extensions

Posted by GitBox <gi...@apache.org>.
JaroslavTulach merged pull request #2492:
URL: https://github.com/apache/netbeans/pull/2492


   


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] JaroslavTulach commented on pull request #2492: Avoid conflicts with other Java extensions

Posted by GitBox <gi...@apache.org>.
JaroslavTulach commented on pull request #2492:
URL: https://github.com/apache/netbeans/pull/2492#issuecomment-716361896


   The biggest problem this PR fixes is following "code lens" hint:
   ![image](https://user-images.githubusercontent.com/26887752/97143950-e9676280-1763-11eb-9163-006fff7589e9.png)
   We want users of Apache to debug using "Java (Polyglot)" configuration. However such action isn't (yet) available as a code lens. To avoid confusion this PR disables the hint provided by [java debug](https://github.com/microsoft/vscode-java-debug) and [java test](https://github.com/microsoft/vscode-java-test) extensions.
   
   Ideally we want such hint/lens to be available, but it is too late for 12.2. What needs to happen to make this work smoothly?
   1. Java support needs to identify methods that can be executed (`main`, `@Test`, etc.)
   2. * This needs to be displayed in NetBeans editor somehow
       * This needs to be displayed in VSCode as Code lens
   3. When invoked by user appropriate action needs to be executed using `ActionProvider`
   
   Anything else?
   


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists