aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
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
2014-12-31Updated copyright year.mitchell
2014-12-24Small code and documentation cleanup.mitchell
2014-12-24Fixed C module's ctag autocompletion and utilize project or directory tags.mitchell
Includes the current project's top-level tags file or the current directory's tags file automatically. That file does not need to be added to `_M.ansi_c.tags`.
2014-12-23Enable suspend in the terminal version.mitchell
Patch libtermkey to allow this and also to support mouse enabling/disabling. Needed to change ^Z undo to M-Z and added M-S-Z as extra redo.
2014-11-30Show command entry call tips above it; modules/textadept/command_entry.luamitchell
2014-11-30Updated Lua autocompletion and documentation.mitchell
2014-11-30Show character info with lexer and style call tip; modules/textadept/keys.luamitchell
Added binding for the terminal version.
2014-11-30Added UTF-8 input mode for OSX and curses; modules/textadept/keys.luamitchell
2014-11-29Fixed command entry reset bug for real instead of in r1861.mitchell
2014-11-29Show symbol documentation in the Lua command entry; modules/textadept/keys.luamitchell
2014-11-26Fixed bug in jumping to compile/run errors and clear annotations before builds.mitchell
2014-11-26Allow connection to `events.QUIT` without requiring index of 1.mitchell