orbitalquark

Results 99 comments of orbitalquark
trafficstars

I don't know how SciTE does it. Do you? For the GUI version I rely on Qt's or Gtk's process spawning features, and for the terminal version I have to...

That's a reasonable workaround for those that need stdout and stderr to be in sync. Thanks for sharing.

I think this may be related to the inability to determining the filesystem encoding in #510. If you manually export `CHARSET=UTF-8` and try again, does it work?

You may need to do something like `xterm -e textadept-curses`. Based on your screenshot, it appears to be invoking `textadept-curses $file < /dev/tty`, which (to me) appears to be doing...

I can reproduce the crash by calling `textadept-curses $file < /dev/tty`. I'll look into that when I have a chance. Applications should simply be invoking `textadept-curses $file`. There shouldn't be...

It depends on the application you are using Scintillua with. If you are using it with SciTE, then you can use something like "import /path/to/scintillua/themes/light" in your SciTE properties file...

The HTML lexer highlights both CSS and Javascript, provided they are within `` and `` tags, respectively. Or did you mean something else?

The existing Visual Basic lexer looks like it will work.

This change does not correctly handle the following input: The "attr1=100" line will not be highlighted correctly, but the line below it will. This is why I had to use...

It depends on how an application passes in text to lex. If they pass in the entire buffer each time, then there will not be an issue. (However, this will...