aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-10-01Fixed regression in r2249 with composed keys; src/textadept.cmitchell
Alt- composed keys were getting translated to their group 0 values.
2016-09-29Discard Alt/option modifier for composed ASCII symbols; core/keys.luamitchell
For example this should report 'm{' as just '{' on a Spanish OSX key layout.
2016-09-29Added link to learning Lua; doc/index.htmlmitchell
2016-09-28Updated CHANGELOG.md.mitchell
2016-09-28Updated book links.mitchell
2016-09-28Update Lua autocompletion and documentation.mitchell
2016-09-28Updated for 9.0.mitchell
2016-09-19Updated "Why Textadept?" section to be more factual; doc/index.htmlmitchell
2016-09-15Updated FAQ.md.mitchell
2016-09-15Added a "Why Textadept?" type of section; doc/index.htmlmitchell
2016-09-15Updated key bindings list; modules/textadept/keys.luamitchell
2016-09-15Added TaskPaper lexer; modules/textadept/file_types.luamitchell
2016-09-15Updated to Scintilla 3.6.7 and Scintillua 3.6.7-1.mitchell
2016-09-15Allow on-site donations and EBook purchases.mitchell
2016-09-12Better handling of key bindings on international keyboards.mitchell
Try to ensure the default bindings work on international keyboards (e.g. `Ctrl+я` should be `Ctrl+Z` on a Russian keyboard). Thanks to Heck Fy.
2016-09-12Fixed error building projects; modules/textadept/run.luamitchell
2016-09-05Better error handling in filter-through; modules/textadept/editing.luamitchell
2016-09-01Added tag textadept_9.0_beta for changeset e9f03d02af92mitchell
2016-09-01Updated CHANGELOG.md.mitchell
2016-08-31Fixed infinite loop in "Replace All" with zero-length regex matches.mitchell
2016-08-29Updated to gtdialog 1.3; src/Makefilemitchell
2016-08-29Updated Lua autocompletion and documentation.mitchell
2016-08-29Small LuaDoc updates.mitchell
2016-08-29Updated for 9.0 beta.mitchell
2016-08-29Small LuaDoc update; core/.buffer.luadocmitchell
2016-08-29Fixed potential crash on Windows with filter-through and some locales.mitchell
cmd.exe can choke on outputting some non-ASCII characters.
2016-08-11Fixed caps lock key handling.mitchell
2016-07-29Fixed passing of quoted arguments to OSX `ta` script; scripts/osx/tamitchell
2016-07-24Added `events.TAB_CLICKED` event.mitchell
This allows for the user to override the default switch behavior (e.g. switch to an existing split view that already has the target buffer open). Thanks to Gabriel Dubatti.
2016-07-22Fixed infinite loop with "Replace All" in selection; modules/textadept/find.luamitchell
This happens when the replacement text matches the find text and is longer in length.
2016-07-14Fixed bug in keeping track of event indices; core/events.luamitchell
As a result, `events.disconnect()` may disconnect the wrong event handler. Thanks to David Karell.
2016-07-11Added tag textadept_9.0_alpha_2 for changeset fb2479930a18mitchell
2016-07-11Updated CHANGELOG.md.mitchell
2016-07-11Updated Lua autocompletion and documentation.mitchell
2016-07-11Updated for 9.0 alpha 2.mitchell
2016-07-07Try to differentiate between Python 3 and 2 in run commands.mitchell
2016-07-06Document how to generate Lua autocompletion and documentation for user modules.mitchell
2016-07-06Added context to localization messages for easier translation.mitchell
2016-07-04Added timeout prompt for "Find in Files".mitchell
It is now possible to cancel a "Find in Files" search part-way through.
2016-07-04Fixed inability to effectively halt `lfs.dir_foreach()` loops; core/lfs_ext.luamitchell
2016-07-04Replaced Lua pattern matching with Regex via Scintilla and TRE.mitchell
As a result, changed `ui.find.lua` to `ui.find.regex` Also removed luautf8 dependency since it is no longer needed. Regex replacements cannot contain embedded Lua code. Jumping to "find in files" results selects those results instead of just jumping to their respective lines.
2016-07-04Check bounds for `buffer:text_range()`; core/init.luamitchell
2016-07-04Fixed OSX build; src/Makefilemitchell
libgthread.dylib is still required by at least libgtkmacintegration.dylib.
2016-07-01Added tag textadept_9.0_alpha for changeset 6f36de80cf97mitchell
2016-07-01Fixed compile error introduced in the terminal version; src/textadept.cmitchell
2016-07-01Updated CHANGELOG.md.mitchell
2016-07-01Updated Lua autocompletion and documentation.mitchell
2016-06-30Small manual and LuaDoc updates.mitchell
2016-06-30Updated for 9.0 alpha.mitchell
2016-06-27Added note on scripting auto-save; doc/manual.mdmitchell