Results 14 comments of Jad

ScintillaNET is a .NET wrapper for native/C++ Scintilla. You'd need to modify [LexCPP.cxx](https://github.com/mirror/scintilla/blob/master/lexers/LexCPP.cxx) and recompile it, then use new SciLexer.dll in ScintillaNET. Note that LexCPP.cxx is a general lexer for...

I really don't know. The author, @jacobslusser, may have the answer. My best guess is that he doesn't have much time to work on the project.

@tobeypeters OP's issue is about IME. https://en.wikipedia.org/wiki/Input_method

> > > I have the same problem > for the Scilexer.dll x86 i compile the makefile by mingw32-make.exe > and i don't know how to do to obtain x64...

Like this: ```c# string blah = scintilla.Lines[scintilla.CurrentLine].Text; ```

Have you tried what's on the [Custom Syntax Highlighting](https://github.com/jacobslusser/ScintillaNET/wiki/Custom-Syntax-Highlighting) wiki page?

Found it in a ScintillaNET 2.x.x repo: https://github.com/nccgroup/ncccodenavi/blob/master/Win.CodeNavi/3rd-Party/ScintillaNET%20v2.5.2%20Source/ScintillaNET/Scintilla.cs#L1426 The function basically calls [SCI_GETSTYLEAT](https://www.scintilla.org/ScintillaDoc.html#SCI_GETSTYLEAT) to get the style index. I don't know why it was removed, but by looking at the...

Seems that the C++ lexer has the property `lexer.cpp.track.preprocessor` enabled by default. This is what's causing the "fail". You have two options to solve this. 1. Disable the property via...

I was ready to make this beauty my go-to software, but a terminal without admin rights isn't a proper terminal. Rather disappointing but looking forward for a future release that...