Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

64-bit Scintilla-like text-editing component? [closed]

Is there a 64-bit-compatible alternative to Scintilla out there that's open-source?

like image 425
user541686 Avatar asked Sep 04 '11 01:09

user541686


1 Answers

These are all .NET components:

ScintillaNET

Based on Scintilla, and has a 64-bit version of the lexer DLL.

http://scintillanet.codeplex.com/

http://scintillanet.codeplex.com/wikipage?title=FAQ&referringTitle=Documentation#FAQ-64-bit

AvalonEdit (editing component used in SharpDevelop)

http://channel9.msdn.com/coding4fun/blog/Creating-your-own-Text-Editor-with-AvalonEdit

ICSharpCode.TextEditor (precursor to AvalonEdit; used in prior Windows Forms-based SharpDevelop)

https://github.com/icsharpcode/SharpDevelop/wiki/Using-the-texteditor

like image 168
n4cer Avatar answered Nov 15 '22 08:11

n4cer