Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-15 | Set language-specific buffer properties through an event instead of a function. | ||
2013-05-15 | `_M.textadept = require('textadept')` in user init is superfluous. | ||
The module was being loaded by default anyway. Besides, the user's modules/textadept/init.lua controls which parts are loaded. | |||
2013-05-15 | Updated old documentation. | ||
2013-05-09 | Added notes on compiling the Win32 terminal version; doc/12_Compiling.md | ||
2013-04-30 | Word highlighting is supported in curses; doc/06_AdeptEditing.md | ||
2013-04-29 | More code cleanup. | ||
"local buffer = buffer" and similar optimizations are not needed since lexing the buffer is much more expensive and reaction time is limited by how fast the keyboard can submit key presses. | |||
2013-04-27 | Updated manual images. | ||
2013-04-26 | Fixed compilation error for CDK on Mac OSX. | ||
2013-04-24 | Renamed `goto_file_in_list()` to `goto_file_found()` and revamped functionality. | ||
Also changed experimental find incremental API. | |||
2013-04-24 | Mark recognized errors in compile/run output and added navigation functions. | ||
2013-04-21 | Updates to compile with latest GTK-OSX. | ||
This fixes Fn key recognition. | |||
2013-04-19 | Updated some documentation. | ||
2013-04-19 | Modified some CDK code for Win32 curses; doc/12_Compiling.md | ||
2013-04-11 | Added key modes and changed the command entry to use them. | ||
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`. | |||
2013-04-08 | Make "command_entry_keypress" event more consistent with "keypress" in curses. | ||
2013-04-06 | Update terminal color definitions. | ||
Requires Scinterm r47. | |||
2013-04-05 | Initial support for Windows terminal via pdcurses. | ||
2013-04-03 | Textadept should support multiple curses platforms; remove ncurses references. | ||
Requires Scintilla r4436 and Scinterm r45. | |||
2013-03-25 | Added lfs.dir_foreach() for allowing Find in Files to have a filter. | ||
Also moved snapopen module into core as io.snapopen(). | |||
2013-03-10 | Indicator for highlighted words works in ncurses. | ||
This requires Scinterm hg changeset 40 (7e25b9a35fbd). | |||
2013-02-24 | Fixed bug in API documentation link generator; doc/markdowndoc.lua | ||
2013-02-11 | Added command line switches for running Lua code on startup. | ||
2013-02-05 | Added command line switches for loading sessions on startup. | ||
2013-01-31 | Added ability to type over characters like closing braces and quotes. | ||
2013-01-20 | Updated copyright date. | ||
2012-12-26 | "make install" and "make ncurses install" install separate binaries. | ||
2012-11-19 | Rewrote LuaDoc. | ||
2012-11-19 | Changed Lua code style for tables. | ||
2012-10-31 | Fix typos in documentation. | ||
2012-10-30 | Continued updating documentation formatting. | ||
2012-10-29 | Updated documentation formatting. | ||
Pathnames and filenames are italic and be more consistent with constant width text. | |||
2012-10-29 | Mention copying dll files when compiling for Win32; doc/12_Compiling.md | ||
2012-10-29 | Updated doc/markdowndoc.lua. | ||
2012-10-23 | Removed `_M.textadept.run.execute()`. | ||
2012-10-22 | Fix string collation bug in ncurses due to CDK. | ||
CDK would reset locale settings so autocomplete lists would not sort correctly. | |||
2012-10-17 | Updated manual. | ||
2012-10-16 | Tweaked Textadept icon. | ||
2012-10-08 | Use '@field' LuaDoc for events defined in modules. | ||
2012-10-03 | Added command line argument documentation; doc/13_Help.md | ||
2012-09-28 | Added marks for making selection in ncurses. | ||
Even though the implementation uses a new `MODIFIED` event, it is left undocumented because it will likely never be a full implementation of SCN_MODIFIED. | |||
2012-09-22 | Fixes to Lua paths. | ||
Do not look in the current working directory for modules. Look in _USERHOME for shared libraries. | |||
2012-09-18 | New Textadept icon. | ||
Added 256x256 icon and updated screenshots. | |||
2012-09-12 | Updated Migration Guide; doc/14_Appendix.md | ||
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-09-12 | Properly link '@see' tags outside of the current module; doc/markdowndoc.lua | ||
Global functions/tables must be prefixed with '_G.'. Otherwise, full names can be used. | |||
2012-08-30 | Fixed manual link; doc/03_UserInterface.md | ||
2012-08-29 | Updated Migration Guide; doc/14_Appendix.md | ||
2012-08-28 | Updated manual introduction; doc/01_Introduction.md | ||
2012-08-27 | Fixed multiple selection on Mac OSX. | ||