aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2017-11-10Removed redundant "Select in delimiter" menus and keys.mitchell
They can be auto-detected now.
2017-11-10Removed `textadept.editing.match_brace()`.mitchell
"Select to Matching Brace" has been moved into `textadept.editing.select_enclosed()`, which now automatically determines what to select between if no arguments are given.
2017-11-07Pasted text is reindented by default.mitchell
2017-10-31Fixed APDL block commenting.mitchell
2017-08-28Updated Lua autocompletion and documentation.mitchell
2017-08-28Added support for Myrddin.mitchell
2017-08-27Made `textadept.editing.transpose_chars()` UTF-8-aware.mitchell
2017-08-09Ensure context menus are configurable without the need for events.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-06-30Updated Lua autocompletion and documentation.mitchell
2017-06-30Small LuaDoc update.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-05-26Changed "Cancel Snippet" keybinding to `Esc`.mitchell
2017-05-26Fixed bug that deleted characters outside of mangled snippets.mitchell
2017-04-30Updated Lua documentation; modules/lua/apimitchell
2017-04-30Added support for Logtalk.mitchell
2017-04-18Fixed some instances of snippet insertion with selected text.mitchell
Ensure snippet start position is as far back as possible.
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-23Fixed Moonscript association; modules/textadept/file_types.luamitchell
2017-03-16Use the C++ lexer for the ".cc" extension; modules/textadept/file_types.luamitchell
2017-02-28Updated localization string; modules/textadept/menu.luamitchell
Introduced in r2288 and r2291.
2017-02-25Added support for rc and Standard ML.mitchell
Requires Scintillua r592 (changeset 149ae95d14f3).
2017-02-12Print lexer initialization errors like normal errors.mitchell
Otherwise, stderr needs to be inspected. Requires Scintillua r584 (changeset fa39221dd5ad).
2017-02-02Do not move over selected typeover characters; modules/textadept/editing.luamitchell
Typing into selections should replace the selection.
2017-01-12Updated LuaDoc; modules/textadept/editing.luamitchell
2016-12-31Updated copyright information.mitchell
2016-12-08Updated Lua autocompletion and documentation.mitchell
2016-12-08Prevent duplicate recent files on session load; modules/textadept/session.luamitchell
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-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-09-28Update Lua autocompletion and documentation.mitchell
2016-09-15Updated key bindings list; modules/textadept/keys.luamitchell
2016-09-15Added TaskPaper lexer; modules/textadept/file_types.luamitchell
2016-09-12Fixed error building projects; modules/textadept/run.luamitchell
2016-09-05Better error handling in filter-through; modules/textadept/editing.luamitchell
2016-08-31Fixed infinite loop in "Replace All" with zero-length regex matches.mitchell
2016-08-29Updated Lua autocompletion and documentation.mitchell
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-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-11Updated Lua autocompletion and documentation.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-04Added timeout prompt for "Find in Files".mitchell
It is now possible to cancel a "Find in Files" search part-way through.
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.