aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept
AgeCommit message (Collapse)Author
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
2012-07-16Code cleanup.mitchell
2012-07-16Support highlight word markers in ncurses; modules/textadept/editing.luamitchell
Indicator boxes are not shown since they are overwritten when drawing the text lines.
2012-07-16Support bookmarks in ncurses; modules/textadept/bookmarks.luamitchell
2012-07-16Reverted r1189; ncurses command entry key command is M-C again.mitchell
2012-07-15Changed ncurses command entry key command from M-C to M-E.mitchell
2012-07-14Use text "images" for ncurses Adeptsense lists; modules/textadept/adeptsense.luamitchell
2012-07-09Ignore Fn-key combinations on Mac OSX.mitchell
GTKOSX passes a keycode that confuses Scintilla, which inserts a 'DLE' char.
2012-06-22Resize most filteredlists to fit the ncurses screen.mitchell
2012-06-22Updated key commands for ncurses.mitchell
2012-06-21Changed 'Quit' key command to 'Ctrl+Q' on Windows and Linux.mitchell
2012-06-21Save terminal sessions to a different file; modules/textadept/session.luamitchell
2012-06-06Removed 'gtk-' stock menus and changed 'separator' to ''.mitchell
2012-06-05Added ncurses Command Entry completion.mitchell
2012-06-04Added ncurses Find/Replace dialog.mitchell
2012-06-02Fix broken code from ncurses changes; modules/textadept/menu.luamitchell
2012-05-31Updated modules/textadept/mime_types.conf.mitchell
2012-04-12Added note about documenting module fields; modules/textadept/adeptsense.luamitchell
2012-04-06Print annotations for run and compile command errors; modules/textadept/run.luamitchell
2012-04-06Fixed bug in run/compile commands with LuaJIT; modules/textadept/run.luamitchell
2012-03-27Translate all messages instead of relying on GTK to translate stock items.mitchell
2012-03-25Improved message double-clicking behavior for run and compile commands.mitchell
2012-03-22Updated paths to Manual and LuaDoc in menus and key commands.mitchell
2012-03-16Moved "Markdown:" comments into module LuaDoc comments.mitchell
2012-03-15Added documentation for generating API documentation and Lua Adeptsense.mitchell
2012-03-15Added note about child Adeptsenses; modules/textadept/adeptsense.luamitchell
2012-03-14Use buffer:get_lexer(true) more often when it should be used.mitchell
2012-03-14autocomplete_word() accepts default words; modules/textadept/editing.luamitchell
From Brian Schott.
2012-03-07Updated contact email address.mitchell
2012-03-07Documentation overhaul with Discount (Markdown implementation).mitchell
The standard LuaDoc template is no longer used. Instead, the new `scripts/markdowndoc.lua` has the template for LuaDoc and `scripts/update_doc` has the template for the Manual. Also added README, CHANGELOG, and THANKS files.
2012-03-04`_M.set_buffer_properties()` is now optional; modules/textadept/mime_types.luamitchell
2012-02-29Added more OSX key commands; modules/textadept/keys.luamitchell
From Robert Gieseke.
2012-02-26Support multiple '@return' tags in Lua Adeptsense documentation.mitchell
2012-02-10Update LuaDoc with new formatting.mitchell
2012-01-31Added ChucK lexer; modules/textadept/mime_types.confmitchell
2012-01-24Rename module shortcut variables.mitchell
2012-01-19Fixed bug with recent files; modules/textadept/session.luamitchell
2012-01-17Use lines() instead of read() for processes; modules/textadept/run.luamitchell
While this does not stop io blocking, there might be another way.