Nodes/ExplorerViews and Navigator.

2019-10-27 Thread Ian Utley
I'm trying to create a new Navigator panel for a project, and attempting to just simply populate some dummy nodes based upon code documented in the Navigator API (e.g. at the bottom of http://bits.netbeans.org/dev/javadoc/org-netbeans-spi-navigator/overview-summary.html ). I have some sample code

Re: NetBeans 11.1 + Maven + Lombok

2019-09-20 Thread Ian Utley
I'm also using Netbeans 11.1 and lombok 1.16.22 just fine. Are you certain that the project is explicitly using that version? (i.e. you see it in your projects dependency tree inside Netbeans) On Fri, Sep 20, 2019 at 12:12 PM Thomas Kellerer wrote: > We are using the same Lombok version: 1.18.4

Re: Language Support

2019-08-28 Thread Ian Utley
You may also find http://wiki.netbeans.org/SyntaxColoringANTLR helpful if you are using ANTLR as your lexer/parser of choice. I'm currently writing a Prolog language support module, which supports syntax highlighting, code completion, code folding, navigation bar and custom project type as a maven

Re: Implement toolbar Comment/Uncomment actions

2019-08-21 Thread Ian Utley
table CommentHandler.DefaultCommentHandler fixed the issue. On Wed, Aug 21, 2019 at 3:57 PM Ian Utley wrote: > Hi, > I have created and registered a new File Type inside Netbeans 11. > However the comment/uncomment buttons in the editor toolbar do not do > anything (as expected). How do I implement th

Implement toolbar Comment/Uncomment actions

2019-08-21 Thread Ian Utley
Hi, I have created and registered a new File Type inside Netbeans 11. However the comment/uncomment buttons in the editor toolbar do not do anything (as expected). How do I implement these actions, do I need to also create an EditorKit, or is that deprecated? Regards Ian.