aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-08-27Updated Info.plist such that Textadept appears in the "Open With..." menu.mitchell
Thanks to Franck Guadagnini.
2017-08-20Added optional encoding parameter to `io.open_file()`.mitchell
Sometimes encoding auto-detection via `io.encodings` is more trouble than it's worth.
2017-08-19Link to Lua Quick Reference in e-book bundle.mitchell
2017-08-19Updated to Scintillua 3.7.5-1.mitchell
2017-08-16Mention that buffer's API is derived from Scintilla and provide docs link.mitchell
2017-08-09Ensure context menus are configurable without the need for events.mitchell
2017-07-25Properly handle `buffer.margin_left` and `buffer.margin_right`.mitchell
Scintilla's iface for them is different than similar properties.
2017-07-08Just link to donation page and e-book page instead of embedding them.mitchell
2017-07-08Added link to e-book bundle with Lua Quick Reference.mitchell
2017-07-06Do not attempt to provide autocompletions when there is no context.mitchell
2017-07-02When searching in files, show more lines below a match.mitchell
2017-07-02Added ability for buffer list to show buffers by z-order.mitchell
2017-06-30Added tag textadept_9.5_beta for changeset 6f6113d6c519mitchell
2017-06-30Updated CHANGELOG.md.mitchell
2017-06-30Updated Lua autocompletion and documentation.mitchell
2017-06-30Small LuaDoc update.mitchell
2017-06-30Updated for 9.5 beta.mitchell
2017-06-27Added FAQ entry on Mercurial TLS settings.mitchell
2017-06-27Textadept Quick Reference Third Edition is no longer "new".mitchell
2017-06-25Updated to gtDialog 1.4.mitchell
2017-06-25Updated to Scinterm 1.9.mitchell
2017-06-23Small code cleanup.mitchell
2017-06-22Lua command entry improvements.mitchell
Mimic Lua 5.3 interpreter by auto-printing results and making '=' prefix optional, call returned functions implicitly (no calling parentheses required), and pretty print tables.
2017-06-22Allow pipes in shell command for "filter through".mitchell
2017-06-21Correctly handle multiple '!' patterns in file filters.mitchell
This allows for specific file and folder includes.
2017-06-21Sort Scintilla backport patches before applying them.mitchell
2017-06-20Added support and documentation for new ui dialogs.mitchell
This requires gtdialog r108 (changeset 8465c20432e1).
2017-06-20Added documentation for new color selection dialog.mitchell
This requires gtdialog r106 (changeset 4fbcad4d2031).
2017-06-20Updated key binding in manual for cancelling a snippet.mitchell
2017-06-17Effectively updated to Scintilla 3.7.5 with select backports to 3.7.3.mitchell
2017-06-04Fixed start-anchored "find prev" TRE regex searches; src/scintilla.patchmitchell
2017-05-26Changed "Cancel Snippet" keybinding to `Esc`.mitchell
2017-05-26Fixed bug that deleted characters outside of mangled snippets.mitchell
2017-04-30Added tag textadept_9.4 for changeset 90d027eb635fmitchell
2017-04-30Updated CHANGELOG.md ordering once more.mitchell
2017-04-30Updated CHANGELOG.md ordering.mitchell
2017-04-30Updated CHANGELOG.md.mitchell
2017-04-30Updated for 9.4.mitchell
2017-04-30Updated Lua documentation; modules/lua/apimitchell
2017-04-30Install Textadept icons to /usr/share/pixmaps; src/Makefilemitchell
2017-04-30Added support for Logtalk.mitchell
2017-04-30Updated to Scintillua 3.7.4-1; src/Makefilemitchell
2017-04-20Fixed .desktop file icon path issue caused by r2318; src/Makefilemitchell
2017-04-18Fixed some instances of snippet insertion with selected text.mitchell
Ensure snippet start position is as far back as possible.
2017-04-07Effectively updated to Scintilla 3.7.4 with select backports to 3.7.3.mitchell
Scintilla 3.7.4 requires a C++11 compiler, which I do not have.
2017-03-27Fixed .desktop file validation errors.mitchell
2017-03-24Fixed some bugs in "Replace All"; modules/textadept/find.luamitchell
"Replace All" after an initial search would only "replace in selection" and "Replace All" with the selection at EOF would not work.
2017-03-23No need to reassign reopened stderr; src/textadept.cmitchell
2017-03-23Fixed Moonscript association; modules/textadept/file_types.luamitchell
2017-03-16Use the C++ lexer for the ".cc" extension; modules/textadept/file_types.luamitchell