aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-12Honor window maximized setting in session files; modules/textadept/session.luamitchell
2013-12-12More LuaDoc updates.mitchell
2013-11-20Fixed `os.execute()` return values in experimental winapi; core/file_io.luamitchell
2013-11-20Look for `~/.textadept/osx_env.sh` for OSX environment variables.mitchell
Also clarified `ta` launcher since `--help` is unavailable.
2013-11-19Do not split the view when printing messages if tabs are enabled; core/ui.luamitchell
2013-11-19Experimental winapi extension for preventing the flashing black box on Windows.mitchell
Compile in a stripped version of Steve Donovan's winapi library and override `io.popen` and `os.execute`.
2013-11-18LuaDoc updates.mitchell
2013-11-14Added support for Dart; modules/textadept/file_types.luamitchell
2013-11-11Added tag textadept_7.1 for changeset dcefcbb61eebmitchell
2013-11-11Updated CHANGELOG.md.mitchell
2013-11-11Updated Lua Adeptsense.mitchell
2013-11-11Updated for 7.1.mitchell
2013-11-11Updated documentation.mitchell
2013-11-11Added `events.FILE_CHANGED`; core/file_io.luamitchell
Add an event handler at index 1 to override the default prompt to reload.
2013-11-11Fixed bug when replacement captures have escapes; modules/textadept/find.luamitchell
2013-11-11Fixed bug with Scintilla notification constants.mitchell
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