aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-12-21Updated for 9.2.mitchell
2016-12-20Applied temporary Scintilla patch to fix crashes; src/scintilla.patchmitchell
2016-12-10Added tag textadept_9.1 for changeset 26937058f428mitchell
2016-12-10Updated CHANGELOG.md.mitchell
2016-12-08Updated file types; src/Info.plistmitchell
2016-12-08Updated Lua autocompletion and documentation.mitchell
2016-12-08Updated for 9.1.mitchell
2016-12-08Prevent duplicate recent files on session load; modules/textadept/session.luamitchell
2016-12-05Updated to Scintilla 3.7.1.mitchell
2016-11-16Fixed bug in previous commit; modules/textadept/menu.luamitchell
2016-11-11Be more efficient when updating menu item functions; modules/textadept/menu.luamitchell
Updating the entire menu is overkill and seems to slow down upon `reset()`.
2016-11-04Removed MacRoman encoding option, as OSX uses UTF-8 by default.mitchell
2016-11-01Improvements and fixes to the `install` rule; src/Makefilemitchell
Thanks to Pedro Andres Aranda Gutierrez.
2016-10-31Automatically install/uninstall .desktop files as necessary; src/Makefilemitchell
2016-10-19Allow detection of encodings with NUL bytes like UTF-16; core/file_io.luamitchell
2016-10-19Updated to Scintilla 3.7.0.mitchell
2016-10-18Fixed bug in find/replace with consecutive matches; modules/textadept/find.luamitchell
2016-10-06Added support for Protobuf and Crystal.mitchell
Requires Scintillua r570 (changeset fe4431acc506).
2016-10-01Added tag textadept_9.0 for changeset bdd7e352df48mitchell
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.