aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-12-31Updated for 8.5.mitchell
2015-12-31Updated Lua autocompletion and documentation.mitchell
2015-12-31Textadept has been using Lua 5.3 for some time now; doc/manual.mdmitchell
2015-12-30Fixed bug restoring split views in large windows; modules/textadept/session.luamitchell
2015-12-29Fixed bug in restoring state after cancel; modules/textadept/snippets.luamitchell
2015-12-23Attempted fix for edge-case state inconsistency in snippets.mitchell
2015-12-22No need to highlight the second edition of the book; doc/index.htmlmitchell
2015-12-12Updated FAQ.md.mitchell
2015-12-10Do not visit buffers that do not need saving in `io.save_all_files()`.mitchell
This speeds up `io.save_all_files()`, particularly on remote filesystems. Thanks to Ivan Baidakou.
2015-12-07Added support for AutoIt.mitchell
Requires Scintillua r525 (changeset c4268c3df705).
2015-12-06Updated to Lua 5.3.2.mitchell
2015-12-03Allow compile, run, and build command functions to specify a working directory.mitchell
2015-12-03Added support for the Icon language.mitchell
Requires Scintillua r524 (changeset e31e33b9c1a3).
2015-11-19Fixed bug resolving relative paths with multiple '../'; core/lfs_ext.luamitchell
2015-11-16Added support for SNOBOL4.mitchell
Thanks to Michael Richter.
2015-11-13No need to PGP sign non-source archives; src/Makefilemitchell
2015-11-12Fixed '%' escape sequences in snippets; modules/textadept/snippets.luamitchell
2015-11-11PGP sign packages for added integrity.mitchell
2015-11-11Added tag textadept_8.4 for changeset f31a83492b6cmitchell
2015-11-11Updated CHANGELOG.md.mitchell
2015-11-07Updated for 8.4.mitchell
2015-11-07Updated Lua autocompletion and documentation.mitchell
2015-11-07Updated to Scintilla and Scintillua 3.6.2.mitchell
2015-11-04Updated Swedish translation; core/locales/locale.sv.confmitchell
Thanks to Niklas Wallén.
2015-10-28Ensure placeholders are eventually cleared; modules/textadept/snippets.luamitchell
2015-10-27Fixed simple placeholders in default text; modules/textadept/snippets.luamitchell
2015-10-22Only save bookmarks for eligible buffers; modules/textadept/session.luamitchell
2015-10-22Do not call snippet functions by mistake; modules/textadept/snippets.luamitchell
2015-10-22Refactored 'ansi_c' and 'lua' modules' snippets.mitchell
Also removed command for auto-'end' insertion of Lua control structures since snippets are now favored.
2015-10-22Added tags for the Lua C API to the ansi_c module.mitchell
2015-10-22Snippets can now be functions that return text; modules/textadept/snippets.luamitchell
Also fixed a small bug and documentation.
2015-10-20Tabbing through a choice should autocomplete it; modules/textadept/snippets.luamitchell
2015-10-20Added snippet choice placeholders; modules/textadept/snippets.luamitchell
2015-10-19Save bookmarks in sessions; modules/textadept/session.luamitchell
2015-10-17Do not error when trying to snapopen a non-existent project; core/file_io.luamitchell
2015-10-14Updated to LPeg 1.0; src/Makefilemitchell
2015-10-12Do not interpret `%n</...>` as transforms; modules/textadept/snippets.luamitchell
They are often seen in XML snippets and escaping would be tedious.
2015-10-12Fixed S-Tab binding in CDK widgets; src/cdk.patchmitchell
2015-10-07Fixed potential bug in UPDATE_UI handler; modules/textadept/snippets.luamitchell
It's possible for the `updated` parameter to be `nil`; handle it.
2015-10-07Fixed '%' escape sequences in snippets; modules/textadept/snippets.luamitchell
2015-10-01Added tag textadept_8.3 for changeset 5b2d26bc477fmitchell
2015-10-01Updated CHANGELOG.md.mitchell
2015-10-01Updated lspawn and Scintillua dependency versions; src/Makefilemitchell
2015-10-01Updated Lua autocompletion and documentation; modules/lua/apimitchell
2015-10-01Updated for 8.3.mitchell
2015-09-29Added Gherkin lexer.mitchell
Requires Scintillua r514 (changeset 8bce8ef421d7).
2015-09-27Updated LuaDoc; core/init.luamitchell
2015-09-26Fixed Python syntax checker on Win32; modules/textadept/run.luamitchell
'\' in path was causing problems due to being interpreted by Python rather than the shell.
2015-09-26Updated `spawn()` for Win32 curses and updated LuaDoc; core/init.luamitchell
`spawn()` now accepts an environment parameter. Requires lspawn r40 (changeset 4709ecca2dd4).
2015-09-24Do not emit LEXER_LOADED for the command entry; modules/textadept/file_types.luamitchell
Language-specific code may run inadvertantly.