aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-04-01Updated for 7.2 beta 2.mitchell
2014-04-01Updated to Scintilla 3.4.1; src/Makefilemitchell
2014-03-27Added basic project support for snapopen and build scripts.mitchell
Also fixed some curses errors introduced by the last commit.
2014-03-26Include my new "lspawn" module by default for spawning processes.mitchell
The `textadept.run` module now uses `spawn()` instead of `io.popen()`. This module replaces the dependency on winapi. Removed experimental `io.popen()` and `os.execute()` hooks. They may be re-implemented later using `spawn()`.
2014-03-23Updated to Scintilla 3.4.0 and LuaJIT 2.0.3.mitchell
2014-03-10Fixed Win32 terminal bug that disallowed Shifted characters; src/textadept.cmitchell
2014-03-05Added support for gtdialog's new `optionselect` dialog.mitchell
This requires gtdialog r68 (changeset 1426c89d2874).
2014-03-01Updated for 7.2 beta 2.mitchell
2014-02-12Added split views in the terminal version thanks to Chris Emerson.mitchell
2014-02-12C code cleanup; src/textadept.cmitchell
2014-02-10Updated for 7.2 beta.mitchell
2014-02-10Removed unnecessary return from `main()`; src/textadept.cmitchell
2014-02-05Updated to Scintilla 3.3.9.mitchell
2014-01-16Small C code cleanup; src/textadept.cmitchell
2014-01-12Updated copyright information.mitchell
2014-01-12New home page along with some documentation content and layout changes.mitchell
2014-01-01Updated for 7.2 alpha.mitchell
2014-01-01Merge the separate Textadept and lexer Lua states into a single unified one.mitchell
This is an experimental change and requires the latest Scintillua changes.
2013-12-29C code cleanup; src/textadept.cmitchell
2013-12-19Ensure wget uses the correct names when saving dependencies; src/Makefilemitchell
Some websites serve packages using strange URLs or have odd names that can confuse different versions of wget.
2013-12-19Added configurable tab context menus.mitchell
Deprecated `textadept.menu.set_contextmenu()` in favor of new `textadept.menu.set_contextmenus()`.
2013-12-19Export TermKey instance so CDK can use it for input.mitchell
This eliminates the problems caused by libtermkey and CDK having separate input buffers.
2013-12-18Renamed "hypertext" lexer to "html".mitchell
2013-12-15Updated to Scintilla 3.3.7.mitchell
2013-12-15Updated src/lua.patch for Lua 5.2.3.mitchell
2013-12-14Updated to Lua 5.2.3; src/Makefilemitchell
2013-12-14Allow process writing in experimental winapi.mitchell
Other modifications to make the return value for `io.popen()` more file-like.
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-11Updated for 7.1.mitchell
2013-11-10`ui.clipboard_text` is no longer read-only.mitchell
2013-11-07Added support for tabs.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-29Fix warnings and errors when compiling for GTK3.mitchell
2013-10-21Updated for 7.0 beta 5.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-02Updated file extensions for Textadept.app.mitchell
2013-10-01Complete r1584; src/Makefilemitchell
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-20Fixed bug with builds not linking src/LexLPeg.cxx in `make deps`; src/Makefilemitchell
2013-09-08Updated for 7.0 beta 3.mitchell
2013-09-06Fixed bug in processing command line options introduced in r1546.mitchell
2013-09-05Renamed `ui.docstatusbar_text` to `ui.bufstatusbar_text`.mitchell
2013-09-02Updated to the latest CDK.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 `gui` to `ui` since it's more applicable.mitchell