Very simple, distributable text editor with customizable syntax highlighting and maybe word completion - nothing else - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:45:54Z http://stackoverflow.com/feeds/question/1057863 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1057863/very-simple-distributable-text-editor-with-customizable-syntax-highlighting-and 0 Very simple, distributable text editor with customizable syntax highlighting and maybe word completion - nothing else Mark Rushakoff 2009-06-29T11:39:58Z 2009-06-29T21:23:30Z <p>I'm looking for an <em>editor</em> - not an IDE - that has just syntax highlighting. Word completion would be nice for the keywords I specify as well, but I could give up that feature. It only needs to be Windows compatible.</p> <p>The situation is that I have an extremely narrow domain specific language that only has around 25 keywords; it doesn't even have conditionals. I would like the keywords to be highlighted so that the user knows when they've written a keyword correctly. And to help ensure that they don't need to specifically memorize each keyword, that's where word-completion would be nice.</p> <p>I'm going under the assumption that the user has the computer skills of your typical grandparent -- I've easily made syntax files for this DSL in Vim and PSPad, but I feel that those have way too many features to be "usable" for this target audience. The functionality of Notepad (plus coloring) would be just about adequate.</p> <p>I'm also open to writing a simple editor from scratch, if there is a library that already does most of the work I've explained here - i.e. I just tell it what to highlight in what color, possibly using regular expressions.</p> <p><hr/> Updates: I've looked at SciTE a bit -- it is very much like what I'm looking for, except that creating the new syntax file (properties file) is becoming quite a hassle. My syntax is rather simple: a short sample script might have the form of:</p> <pre><code>CommandA CommandB Num1 Num2 CommandC </code></pre> <p>It doesn't quite fit into Python or a Basic language, but I'm not going to write a lexer for it either. But the simplicity of SciTE and its ability to run external programs with the file are two high points.</p> <p>Notepad++ is decent too -- I think it's a bit too full-featured for the intended purpose, but that's not too bad in itself. I had already tried setting up a syntax file for it, but I'm having a couple issues that just shouldn't even pop up. For example, I've chosen a color for the number style. If I put the number 3, it shows up fine. If I put 3.0, the .0 part is in the default color, not the number color. If I do 0x80, only the first zero is colored, let alone the x80; so of course 0xff isn't colored right either. Also, <code>#</code> is my line-comment character. If I have a line such as</p> <pre><code># foo bar </code></pre> <p>the whole line is blue, which is proper. But if there isn't a space (<code>#foo bar</code>), then the whole line stays black. My last gripe is that auto-completion seems to only pick up on words already used in the file, not the keywords that haven't been used yet.</p> <p>Am I missing something obvious with the syntax configuration here? I've had poor luck searching Google for what I think should be obvious answers in regards to Notepad++ syntax.</p> http://stackoverflow.com/questions/1057863/very-simple-distributable-text-editor-with-customizable-syntax-highlighting-and/1057868#1057868 4 Answer by RichieHindle for Very simple, distributable text editor with customizable syntax highlighting and maybe word completion - nothing else RichieHindle 2009-06-29T11:41:29Z 2009-06-29T16:05:14Z <p>Use the <a href="http://www.scintilla.org/" rel="nofollow">Scintilla</a> library, as seen the <a href="http://www.scintilla.org/SciTE.html" rel="nofollow">SciTE</a> editor. It has a systems for custom syntax highlighting and for autocompletion.</p> <p>You might be able to use SciTE as it is, or you could easily modify it or write your own shell for the Scintilla editor component.</p> <p>It comes with commercial-friendly Open Source licence.</p> http://stackoverflow.com/questions/1057863/very-simple-distributable-text-editor-with-customizable-syntax-highlighting-and/1057872#1057872 4 Answer by Umair Ahmed for Very simple, distributable text editor with customizable syntax highlighting and maybe word completion - nothing else Umair Ahmed 2009-06-29T11:42:49Z 2009-06-29T11:42:49Z <p>use notepad plus plus... with language plugin.. it read the keywords from a text file</p> http://stackoverflow.com/questions/1057863/very-simple-distributable-text-editor-with-customizable-syntax-highlighting-and/1057874#1057874 1 Answer by akf for Very simple, distributable text editor with customizable syntax highlighting and maybe word completion - nothing else akf 2009-06-29T11:43:09Z 2009-06-29T17:34:40Z <p><a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">NotePad++</a> satisfies all of your requirements, and more. </p> <p>from the link:</p> <blockquote> <p>Notepad++ is a free (as in "free speech" <strong>and also</strong> as in "free beer") </p> </blockquote> <p>it also has auto-completion and user defined syntax highlighting.</p> http://stackoverflow.com/questions/1057863/very-simple-distributable-text-editor-with-customizable-syntax-highlighting-and/1059908#1059908 0 Answer by Eric for Very simple, distributable text editor with customizable syntax highlighting and maybe word completion - nothing else Eric 2009-06-29T19:03:39Z 2009-06-29T19:03:39Z <p>crimsoneditor and jedit work well</p> http://stackoverflow.com/questions/1057863/very-simple-distributable-text-editor-with-customizable-syntax-highlighting-and/1060651#1060651 0 Answer by Mark Rushakoff for Very simple, distributable text editor with customizable syntax highlighting and maybe word completion - nothing else Mark Rushakoff 2009-06-29T21:23:30Z 2009-06-29T21:23:30Z <p>After digging through the <a href="http://en.wikipedia.org/wiki/Text%5Feditors" rel="nofollow">Wikipedia article on text editors</a>, I've found that <a href="http://www.pnotepad.org/" rel="nofollow">Programmer's Notepad</a> will best suit my needs. Keyword completion is based only on the defined keywords; the syntax file was simple to set up; and I can disable the "complicated" features by default, turning it into just what I need.</p>