aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
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-16Added support for SNOBOL4.mitchell
Thanks to Michael Richter.
2015-11-12Fixed '%' escape sequences in snippets; modules/textadept/snippets.luamitchell
2015-11-07Updated Lua autocompletion and documentation.mitchell
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-12Do not interpret `%n</...>` as transforms; modules/textadept/snippets.luamitchell
They are often seen in XML snippets and escaping would be tedious.
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-01Updated Lua autocompletion and documentation; modules/lua/apimitchell
2015-09-29Added Gherkin lexer.mitchell
Requires Scintillua r514 (changeset 8bce8ef421d7).
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-24Do not emit LEXER_LOADED for the command entry; modules/textadept/file_types.luamitchell
Language-specific code may run inadvertantly.
2015-09-18Refactored snippets to use indicators instead of ugly placeholder text.mitchell
2015-09-14Improved apidoc lookup behind the caret; modules/textadept/editing.luamitchell
Documentation for open functions is shown.
2015-09-07Fixed bug in parsing syntax error output for Ruby; modules/textadept/run.luamitchell
Ruby does not always output a '^' for indicating column number.
2015-09-04Use `spawn()` for syntax checking; modules/textadept/run.luamitchell
This prevents the black box popup on Windows. This requires lspawn r38 (changeset 7683f6d2d678).
2015-08-28Updated Lua autocompletion and documentation.mitchell
2015-08-25Use an empty block comment string by default; modules/textadept/editing.luamitchell
This prevents an error message being generated.
2015-08-19Handle 'typeref' in ctags; modules/ansi_c/init.luamitchell
2015-08-16Block comment should respect indentation; modules/textadept/editing.luamitchell
2015-08-08Added automatic syntax-checking capability as files are saved.mitchell
2015-08-08Added comment support for Elixir and WSF; modules/textadept/editing.luamitchell
2015-07-25Highlight found text in find in files results.mitchell
2015-07-16Fixed transpose characters bug at buffer start; modules/textadept/editing.luamitchell
2015-06-30Updated Lua autocompletion and documentation.mitchell
2015-06-27The Enter key is always reported as '\n' on Windows; modules/textadept/keys.luamitchell
It may have been reported as '\r' long ago in previous versions of GTK or pdcurses, but on WinXP and Win7, it is always '\n'.
2015-06-23Allow `select_word()` to select all occurrences; modules/textadept/editing.luamitchell
This takes advantage of some of Scintilla's new API functions.
2015-06-23Updated to Scintilla 3.5.7.mitchell
2015-06-09Added support for Windows Script Files; modules/textadept/file_types.luamitchell
Requires Scintillua r500 (changeset 130a0af31d5f).
2015-06-01Better solution for previous commit; modules/textadept/file_types.luamitchell
2015-05-13Allow "#!/usr/bin/env ..." file detection; modules/textadept/file_types.luamitchell
Keep "#!.+/sh" since "#!.+sh" as a pattern is too generic.
2015-05-07Added support for Elixir.mitchell
Requires Scintillua r494 (changeset 955860bf41a1).
2015-04-30Updated Lua autocompletion and documentation.mitchell
2015-04-22Added `RUN_IN_BACKGROUND` field for shell commands; modules/textadept/run.luamitchell
2015-04-19Updated Lua autocompletion and documentation.mitchell
2015-04-13Added `symlink` filter option for ignoring symlinked files and directories.mitchell
2015-04-01Updated Lua autocompletion and documentation.mitchell
2015-03-26"Goto Bookmark" shows marks from all buffers; modules/textadept/bookmarks.luamitchell
2015-03-20Small documentation updates.mitchell