aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2013-12-12More LuaDoc updates.mitchell
2013-11-18LuaDoc updates.mitchell
2013-11-14Added support for Dart; modules/textadept/file_types.luamitchell
2013-11-11Updated Lua Adeptsense.mitchell
2013-11-11Updated documentation.mitchell
2013-11-11Fixed bug when replacement captures have escapes; modules/textadept/find.luamitchell
2013-11-10Disable strip trailing spaces by default.mitchell
It's probably better to have users enable it manually than to do something unexpected.
2013-11-10Store the full Lua pattern match in "%0" for use in replacement text.mitchell
2013-11-10Updated LuaDoc.mitchell
2013-11-07New ANSI C lexer.mitchell
C/C++ lexer was separated into ANSI C and C++ lexers. Also took the opportunity to use shorter macros in compile/run commands.
2013-10-30Updated Lua Adeptsense.mitchell
2013-10-29More documentation updates.mitchell
2013-10-29Fix `enclose()` to enclose the whole current word; modules/textadept/editing.luamitchell
It used to enclose just the part of the word behind the caret.
2013-10-23`goto_ctag()` can show all known tags now; modules/textadept/adeptsense.luamitchell
The "kind" argument is optional.
2013-10-23Added ASM lexer and compile and run commands.mitchell
2013-10-21Updated Lua Adeptsense.mitchell
2013-10-21More LuaDoc updates.mitchell
2013-10-18Fixed corner case bug in block uncommenting; modules/textadept/editing.luamitchell
The caret is always constrained to the first line when no selection is present.
2013-10-18Added "Save All" to the menu.mitchell
2013-10-18The buffer API applies to all buffers now, not just the global one.mitchell
Created a "dummy" Scintilla view for operating on non-global documents. Removed `buffer:check_global()` and replaced `buffer.dirty` with Scintilla's `buffer.modify`.
2013-10-18Fix paragraph selection corner case; modules/textadept/editing.luamitchell
2013-10-18More LuaDoc updates.mitchell
2013-10-09Use an indicator to highlight matching braces.mitchell
2013-10-09More LuaDoc updates.mitchell
2013-10-06Added Nimrod lexer and compile and run commands.mitchell
2013-10-05Changed Lua run command to buffer output properly; modules/textadept/run.luamitchell
2013-09-30Updated Lua Adeptsense.mitchell
2013-09-29Fix error when block commenting in plain text; modules/textadept/editing.luamitchell
2013-09-29Added new `ui.dialogs` module for more user-friendly dialog support.mitchell
As a result, removed `ui.filteredlist()` and changed `io.open_file()` and `io.snapopen()` APIs to accept tables of files and paths instead of "\n" delimited strings.
2013-09-27Integrated compile and run commands for most languages.mitchell
Compile and run should work out of the box for most languages. Also added a warning marker, renamed `compile_command` and `run_command` tables to `compile_commands` and `run_commands`, respectively, and renamed `error_details` to `error_patterns`, changing its structure to just hold patterns.
2013-09-27Fixed incorrect constants introduced in r1574; modules/textadept/editing.luamitchell
2013-09-23Code and documentation cleanup.mitchell
2013-09-21Renamed `buffer:convert_eo_ls()` to `buffer:convert_eols()`.mitchell
2013-09-18Support multiple selections with `select_word()`; modules/textadept/editing.luamitchell
2013-09-17Updated Lua Adeptsense.mitchell
2013-09-16Removed the `SC` prefix from most constants in `_SCINTILLA.constants`.mitchell
2013-09-16Removed the `SC_` prefix from constants in `_SCINTILLA.constants`.mitchell
Also removed more unused constants.
2013-09-16Moved custom markers and indicators into themes and added more properties.mitchell
2013-09-15Do not convert filenames to UTF-8; keep them in `_CHARSET`.mitchell
2013-09-13Updated some LuaDoc.mitchell
2013-09-12Changed `events.disconnect()` to accept function argument instead of ID.mitchell
2013-09-11Updated Lua Adeptsense.mitchell
2013-09-09Use `events.ARG_NONE` constant instead of string.mitchell
2013-09-09Moved buffer IO functions into the `io` module.mitchell
Menus and key bindings do not need `events.INITIALIZED`.
2013-09-08Expose marker and indicator numbers for greater customization.mitchell
Removed their respective color settings.
2013-09-08Updated Lua Adeptsense.mitchell
2013-09-06Updated LuaDoc.mitchell
2013-09-01Renamed `buffer:get_style_name(n)` to `buffer.style_name[n]`.mitchell
2013-08-31Allow user scripts to handle `BUFFER_NEW` and `VIEW_NEW` events on startup.mitchell
A side effect is more efficient event emission during startup.
2013-08-26Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now.mitchell