I have been using ScintillaNET both personally and professionally for some time now but find the snippet functionality a little limited. I am trying to add my own snippets to the predefined snippet list. I'm aware that you can create a snippet on the fly with this line:
Any advice or guidance will be very appreciated.
_frm.codeEditor.Snippets.InsertSnippet(new Snippet("header", _snip.HDR));But I'd like to be able to add my own snippets to the list so that when calling:
_frm.codeEditor.Snippets.ShowSnippetList();My own snippets are displayed and accessible. I have looked through several threads on here and through the source of ScintillaNET but haven't been able to see where the list is being generated or how to easily add to it. Ideally, I'd like to point it to a different path that contains my own snippet XML files.
Any advice or guidance will be very appreciated.