aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-10`ui.clipboard_text` is no longer read-only.mitchell
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-07Added support for tabs.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-11-03Link to the book's Table of Contents.mitchell
2013-11-02Added links to order the book and make donations.mitchell
2013-11-01Added tag textadept_7.0 for changeset 62229bed720emitchell
2013-11-01Updated CHANGELOG.md.mitchell
2013-10-30Updated Lua Adeptsense.mitchell
2013-10-30Updated for 7.0.mitchell
2013-10-30Fixed GTK3 bug with split views introduced in r1611; src/textadept.cmitchell
2013-10-30Fix OSX command key recognition; src/scintilla.patchmitchell
2013-10-29Temporary patch to identify OSX command key mouse modifiers; src/scintilla.patchmitchell
Will be removed when upgrading to Scintilla > 3.3.6 if upstream patch is accepted.
2013-10-29More documentation updates.mitchell
2013-10-29Removed alpha settings since curses cannot show alpha; themes/term.luamitchell
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-29Fix warnings and errors when compiling for GTK3.mitchell
2013-10-23`goto_ctag()` can show all known tags now; modules/textadept/adeptsense.luamitchell
The "kind" argument is optional.
2013-10-23Combine `SCFIND_POSIX` with `SCFIND_REGEXP` into `buffer.FIND_REGEXP`.mitchell
Both values are required for regexp searches.
2013-10-23Added ASM lexer and compile and run commands.mitchell
2013-10-21Added tag textadept_7.0_beta_5 for changeset 35026e2a87ebmitchell
2013-10-21Updated CHANGELOG.md.mitchell
2013-10-21Updated Lua Adeptsense.mitchell
2013-10-21Updated for 7.0 beta 5.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-10-02Renamed `buffer.FIND_POSIX` to `buffer.FIND_REGEX` for Lua-like captures syntax.mitchell
2013-10-02Updated file extensions for Textadept.app.mitchell
2013-10-02Changed `ui.set_theme()` API to accept a table of properties to assign.mitchell
2013-10-02Show user-init error messages in a dialog to prevent crashing; init.luamitchell
2013-10-01Added tag textadept_7.0_beta_4 for changeset 2db6af5e9936mitchell
2013-10-01Complete r1584; src/Makefilemitchell
2013-09-30Updated CHANGELOG.md.mitchell
2013-09-30Updated Lua Adeptsense.mitchell
2013-09-30Updated for Textadept 7.0 beta 4.mitchell
2013-09-30Fixed a compile error on platforms that require gmodule; src/Makefilemitchell
2013-09-29Added properties.lua to install targets; src/Makefilemitchell
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.