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