tobeypeters

Results 15 comments of tobeypeters

Switch input method? Changing Overtype? **You doing something like:** ![Capture](https://user-images.githubusercontent.com/35942395/57030541-0a083800-6c13-11e9-9bb7-4a83953e4aa3.PNG) ``` using System; using System.Windows.Forms; using ScintillaNET; namespace WindowsFormsApp2 { public partial class Form1 : Form { public Form1() =>...

Confused. I have the winform and WPF project and neither have anything about ImeMode in them and ctrl-space isn't a built-in scintilla shortcut. I don't see anything in SciTE either....

I'd like to figure this out. Cause, I'm not making an editor. But ... the system I'm writing has an editor built-in. I'm trying to provide absolutely everything I can....

I'll have to try out your branch of ScintillaNET. But, now I'm struggling to get my CSharpLexer working as I want. I'm trying to get Brace matching to work. I...

ScintillaNet or Scintilla? ScintillaNet is written in CSharp. Scintilla itself ... Readme says: Visual C++: nmake -f scite.mak You can try to throw an email to [email protected]. Not sure, if...

You ever get this working? I'm also curious to see how your GetCommentMatches() works.

We'll never get any new additions. He wants the component to stay as close to the original as possible. :< I always thought, as a community, we should build an...

If you're asking how to have "red sky" treated as one single keyword ... Not possible. Not without writing your own Lexer. I wrote my own CSharp Lexer, if you...

No a custom Lexer would fix it. I mean, you would have to add multiple word checks. If you find a string is it the start of à multiple string...

If you want to look at my code, I added Multi-String Keyword support to my Scintilla CSharpLexer. It may be a start, for you? https://github.com/tobeypeters/CSharpLexer