aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept
AgeCommit message (Collapse)Author
2013-03-29Use new Scintilla API for showing search results; modules/textadept/find.luamitchell
This fixes the disorienting scrolling when wrapping only one search result.
2013-03-28Improved message double-clicking behavior for compile and run commands.mitchell
Added `_M.textadept.run.cwd` field for storing the working directory for more accurate relative file paths.
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-03-07No flags in replace_all(); modules/textadept/find.luamitchell
2013-03-07Updated "About" dialog; modules/textadept/menu.luamitchell
2013-02-26Removed useless gui.dialog() options for fileopen/filesave.mitchell
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
2013-01-03Use `buffer.selection_mode` for ncurses mark mode; modules/textadept/keys.luamitchell
This requires Scintilla hg changeset 4323 (91f84362eeb0).
2012-12-16Removed 'PATHS'; modules/textadept/snapopen.luamitchell
2012-12-15Greatly improve speed when loading large files; modules/textadept/mime_types.luamitchell
2012-12-03Recognize special ncurses keys better.mitchell
2012-12-01Updated parameter LuaDoc.mitchell
2012-11-20Be consistent with regard to "caret" vs. "current position".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-23Removed `_M.textadept.run.execute()`.mitchell
2012-10-22Added an event for when a search wraps; modules/textadept/find.luamitchell
Users can connect to this event to implement a more visual or audible notice when a search wraps.
2012-10-17Added ncurses key bindings for bookmarks; modules/textadept/keys.luamitchell
2012-10-16Added key shortcut for toggling fold points; modules/textadept/keys.luamitchell
2012-10-12Fixed ncurses bug in command selection introduced by r1256.mitchell
2012-10-12Fixed bug in key command; modules/textadept/keys.luamitchell
2012-10-08Use '@field' LuaDoc for events defined in modules.mitchell
2012-10-06Fixed more bugs introduced by r1260.mitchell
2012-10-02Fixed bug introduced by r1260; modules/textadept/snippets.luamitchell
2012-10-03Simplified auto-indent; modules/textadept/editing.luamitchell
2012-09-28Use the bit32 library for checking marker bits; modules/textadept/bookmarks.luamitchell
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-18Fixed incremental find in ncurses.mitchell
2012-09-18Use 'text' plain text lexer instead of 'container'.mitchell
2012-09-17Added ncurses CDK field key bindings to list; modules/textadept/keys.luamitchell
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-10Correctly emit RUN_OUTPUT events; modules/textadept/run.luamitchell
2012-09-08Removed `rebuild_command_tables()`; modules/textadept/menu.luamitchell
2012-08-30Show key shortcuts in ncurses `select_command()`; modules/textadept/menu.luamitchell
2012-08-23Changed the default directory depth to 99; modules/textadept/snapopen.luamitchell
Since there is a maximum number of files to list, the depth setting does not matter so much.
2012-08-16Lua code cleanup; modules/textadept/bookmarks.luamitchell
2012-08-16Consolidated bookmark add/remove into `toggle`; modules/textadept/bookmarks.luamitchell
2012-07-23Disable menus in ncurses for now; modules/textadept/menu.luamitchell
2012-07-21Updated modules/textadept/menu.lua with new API.mitchell
2012-07-21More Lua code cleanup and API changes.mitchell
2012-07-21Converted some `buffer` "get" and "set" functions into properties.mitchell
Also updated to Scintilla 3.2.1.
2012-07-21Lua code cleanup and API changes.mitchell
2012-07-19Cycle through api docs with the same command; modules/textadept/adeptsense.luamitchell