[wxPython-users] add some languages to wxstyledtextctrl
Josiah Carlson
jcarlson at uci.edu
Sat Jul 7 17:27:40 PDT 2007
kib2 <kib2 at free.fr> wrote:
> I just wanted to know why languages such as D and Lout are not inside the
> wxStyledTextCtrl. How can I add them ?
The documentation for the wx.stc.StyledTextCtrl is available at
scintilla.org . I'm pretty sure that it supports D, but I can't
remember the url for all of the languages that it supports. You can get
the listing with the following Python code:
import wx.stc
[i for i in dir(wx.stc) if i.startswith('STC_LEX')]
- Josiah
More information about the wxpython-users
mailing list