Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-12-31 | Updated copyright year. | ||
2014-11-25 | Change long line color in terminal version; themes/term.lua | ||
It was impossible to read text on a white background. | |||
2014-01-12 | Updated copyright information. | ||
2013-10-29 | Removed alpha settings since curses cannot show alpha; themes/term.lua | ||
2013-10-09 | Use an indicator to highlight matching braces. | ||
2013-09-27 | Integrated compile and run commands for most languages. | ||
Compile and run should work out of the box for most languages. Also added a warning marker, renamed `compile_command` and `run_command` tables to `compile_commands` and `run_commands`, respectively, and renamed `error_details` to `error_patterns`, changing its structure to just hold patterns. | |||
2013-09-21 | Added call tip highlight color to themes. | ||
2013-09-16 | Moved custom markers and indicators into themes and added more properties. | ||
2013-09-12 | Code cleanup in themes. | ||
2013-08-24 | Include Scintilla constants in `buffer`s. | ||
2013-05-29 | Allow "%()" property expansion in themes like with compile/run macros. | ||
2013-05-25 | Reformatted "style.default" in themes. | ||
2013-05-22 | Use 'font' and 'fontsize' properties for theme fonts. | ||
2013-05-15 | Rewrote theme implementation. | ||
Themes are now just single files that share Textadept's Lua state. Also added a new "settings.lua" that functions in place of buffer and view theme files. Requires latest Scintillua. | |||
2013-05-20 | Updated to Scintilla 3.3.2. | ||
2013-04-06 | Update terminal color definitions. | ||
Requires Scinterm r47. | |||
2013-04-04 | Support retina displays on OSX. | ||
Thanks to John Benediktsson. | |||
2013-04-02 | No need for '!' in front of font faces in GTK anymore. | ||
2013-02-26 | Updated theme options. | ||
2013-01-20 | Updated copyright date. | ||
2012-11-19 | Rewrote LuaDoc. | ||
2012-11-19 | Changed Lua code style for tables. | ||
2012-11-18 | Use proper type for color setting functions in themes. | ||
2012-10-08 | No rectangular selection mouse modifier in ncurses; themes/term/view.lua | ||
2012-10-06 | Fixed bug in default themes for Windows. | ||
2012-09-12 | Documentation overhaul. | ||
Rewrote most of the manual and Lua API to complement each other. Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc. | |||
2012-08-27 | Use constant names in theme options instead of nondescript integers. | ||
2012-08-27 | Fixed multiple selection on Mac OSX. | ||
2012-07-21 | Converted some `buffer` "get" and "set" functions into properties. | ||
Also updated to Scintilla 3.2.1. | |||
2012-07-17 | Note marker compatibility with ncurses. | ||
2012-07-14 | Enable additional selection typing in ncurses; themes/term/view.lua | ||
2012-06-02 | Added terminal theme for ncurses. | ||
2012-03-07 | Updated contact email address. | ||
2012-01-05 | Code cleanup. | ||
2011-12-13 | Updated lexer themes to Lua 5.2. | ||
2011-11-27 | Credit; themes/dark/lexer.lua | ||
2011-11-23 | Added theme utilities, modified light and dark themes, and removed scite theme. | ||
Added gui.set_theme() and gui.select_theme() theming utilities. All new light and dark themes. Moved old classic themes to the wiki. | |||
2011-07-07 | Updated indentation guide settings for themes. | ||
2011-06-25 | Added 'fold.line.comments' option for folding multiple single-line comments. | ||
2011-06-23 | Use 0xBBGGRR format for colors in themes. | ||
2011-02-07 | Use line margin width of 4 for themes. | ||
2010-12-28 | Updated copyright information. | ||
2010-12-03 | For Linux, change rectangular selection modifier to Super/Win in themes. | ||
This enables Ctrl+Mouse to be used for multiple selection. | |||
2010-11-30 | Added more options for themes. | ||
2010-11-23 | Code cleanup. | ||
Also modified the editing module's enclose() and select_enclosed() functions. | |||
2010-11-15 | LuaDoc cleanup. | ||
2010-10-28 | Rename MAC variable in to OSX in Lua, __OSX__ in C. | ||
2010-06-11 | Removed _G.textadept. | ||
Created new _SCINTILLA core module. Renamed textadept.constants to _SCINTILLA.constants Renamed textadept.buffer_functions to _SCINTILLA.functions Renamed textadept.buffer_properties to _SCINTILLA.properties Created new gui core module. Renamed textadept._print() to gui._print(). Renamed textadept.check_focused_buffer() to gui.check_focused_buffer(). Renamed textadept.clipboard_text to gui.clipboard_text. Renamed textadept.context_menu to gui.context_menu Renamed textadept.command_entry to gui.command_entry. Renamed textadept.dialog to gui.dialog. Renamed textadept.docstatusbar_text to gui.docstatusbar_text. Renamed textadept.find to gui.find. Renamed textadept.focused_doc_pointer to gui.focused_doc_pointer. Renamed textadept.get_split_table() to gui.get_split_table(). Renamed textadept.gtkmenu() to gui.gtkmenu(). Renamed textadept.goto_view() to gui.goto_view(). Renamed textadept.menubar to gui.menubar. Renamed textadept.print() to gui.print(). Renamed textadept.size to gui.size. Renamed textadept.statusbar_text to gui.statusbar_text. Renamed textadept.switch_buffer() to gui.switch_buffer(). Renamed textadept.title to gui.title. Renamed textadept.buffers to _G._BUFFERS. Renamed textadept.new_buffer() to _G.new_buffer(). Renamed textadept.quit() to _G.quit(). Renamed textadept.reset() to _G.reset(). Renamed textadept.views to _G._VIEWS. Renamed textadept.user_dofile() to _G.user_dofile(). Renamed textadept.iconv to string.iconv. Renamed textadept.session_file to _SESSIONFILE. Renamed appropriate C functions. | |||
2010-03-30 | Reverted adding annotation settings to themes. | ||
Performance issues were discovered in Scintillua. | |||
2010-03-16 | Added annotation settings to themes. | ||