aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
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
2015-03-19Added some support for Rust and TOML.mitchell
This requires Scintillua r484 (changeset 6a4307f7d2cb).
2015-03-17Allow bookmarks to be toggled on specific lines; modules/textadept/bookmarks.luamitchell
Thanks to Lance Larsen.
2015-03-16Code cleanup based on the output of luacheck, a Lua linter.mitchell
2015-03-15Removed long-hand compile and run string macros; modules/textadept/run.luamitchell
2015-03-14Filter through now uses `spawn()`; modules/textadept/editing.luamitchell
2015-03-12Lua code cleanup.mitchell
2015-03-11Nimrod is now Nim.mitchell
Requires Scintillua r483 (changeset 90bc656005cf).
2015-03-11Updated to Lua 5.3, LPeg 0.12.2, and lfs 1.6.3.mitchell
LuaJIT uses Lua 5.3's new utf8 library. Restored documentation for Lua 5.1 symbols and added deprecation notes.
2015-03-10Removed `keys.LANGUAGE_MODULE_PREFIX` key binding.mitchell
2015-03-10Updated Lua autocompletion and documentation.mitchell
2015-03-10Merged `textadept.file_types.shebangs` into `textadept.file_types.patterns`.mitchell
2015-03-09Moved `events.FILE_SAVED_AS` into `events.FILE_AFTER_SAVE` as extra argument.mitchell
2015-03-09Updated to Scintilla 3.5.4.mitchell
2015-03-07Added Fish lexer; modules/textadept/file_types.luamitchell
2015-02-18Consider some view-specific properties as buffer-specific ones.mitchell
These include "view_eol", "wrap_mode", "view_ws", "margin_type_n", and "margin_width_n". The latter two are for preventing clashes between modules that modify margins on a per-buffer basis.
2015-02-09Return values from abbreviated functions; modules/textadept/command_entry.luamitchell
2015-01-29Fixed snippets bug when name matches lexer name; modules/textadept/snippets.luamitchell
Ensure the result of snippets[name] is not a table.
2015-01-29Removed language-specific context menus.mitchell
Editing `textadept.menu.context_menu` directly is good enough.
2015-01-22Small code and documentation cleanup.mitchell
2015-01-20Updated Lua autocompletion and documentation.mitchell
2015-01-15Added events for terminal suspend and resume.mitchell
Suspend can be prevented by an error handler, described in a new FAQ entry. New `events.RESUME` replaces `events.FOCUS` for the terminal version. Utilize these events to disable/enable bracketed paste and mouse modes.
2015-01-15Restore ^Z as undo if terminal suspend is disabled; modules/textadept/keys.luamitchell
2015-01-15Added filetypes for vCard and Texinfo lexers; modules/textadept/file_types.luamitchell
Requires Scintillua r463 (changeset dab8ec9733ec).
2015-01-09Updated Lua autocompletion and documentation.mitchell