aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-08-11Fixed segfault when quitting while the command entry is open; src/textadept.cmitchell
2015-08-03Updated to Scintillua 3.6.0-1; src/Makefilemitchell
2015-08-02Updated to Scintilla 3.6.0.mitchell
2015-06-30Updated for 8.1.mitchell
2015-06-23Updated to Scintilla 3.5.7.mitchell
2015-06-22Updated to Lua 5.3.1.mitchell
2015-06-01Removed unnecessary casts; src/textadept.cmitchell
2015-06-01Updated to Scintilla 3.5.6; src/Makefilemitchell
2015-04-30Updated for 8.0.mitchell
2015-04-21Removed Scintilla patch applied in 3.5.5; src/scintilla.patchmitchell
2015-04-19Updated for 8.0 beta.mitchell
2015-04-18Updated to Scintilla 3.5.5.mitchell
2015-04-18Updated to Scintillua 3.5.5-1 and Scinterm 1.6; src/Makefilemitchell
2015-04-18Fixed 'require' bug with lfs and utf8 in LuaJIT version.mitchell
2015-04-15Allow undocumented `events.MODIFIED` to emit position and length.mitchell
2015-04-01Updated archives for 8.0 alpha.mitchell
2015-04-01Updated for 8.0 alpha.mitchell
2015-03-18Updated the location of ncurses on the build server; src/Makefilemitchell
2015-03-16Fixed CFLAGS and CXXFLAGS passing for automated x86_64 builds; src/Makefilemitchell
2015-03-14Updated lfs download zip name and link; src/Makefilemitchell
On FreeBSD the https link was problematic.
2015-03-14Updated lfs download zip name; src/Makefilemitchell
2015-03-13Fixed build flags; src/Makefilemitchell
These flags were causing the nightly builds to fail. Lua 5.3's 64-bit integers use "long long", which is not supported by c++98. However, mingw32 has issues with -std=c++0x and apple-darwin does not support it at all. Instead, resort to disabling the "long long" warning.
2015-03-12Emit `BUFFER_AFTER_SWITCH` event before `BUFFER_DELETED`; src/textadept.cmitchell
This fixes a view-specific property bug.
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-10Need latest Scinterm to utilize Scintilla patch from r1949; src/Makefilemitchell
2015-03-10Updated for 7.9.mitchell
2015-03-10Patch Scintilla to fix tab stop calculations in curses; src/scintilla.patchmitchell
This patch was submitted upstream and should not be needed in the next release of Scintilla.
2015-03-09Fixed accidental firing of "Escape" key on window focus lost; src/textadept.cmitchell
2015-03-09Updated to Scintilla 3.5.4.mitchell
2015-03-09Fixed nightly builds; src/Makefilemitchell
2015-03-07Updated language module link and location.mitchell
2015-03-07Official language modules are all in one repository now; src/Makefilemitchell
2015-01-31Updated for 7.8.mitchell
2015-01-22Made `args.process()` private.mitchell
2015-01-20Updated for 7.8 beta 3.mitchell
2015-01-20Updated to Scintillua 3.5.3-1; src/Makefilemitchell
2015-01-20Fixed bug in preventing standard focus out events to be fired; src/textadept.cmitchell
It is desirable to keep the command entry visible if the window is losing focus. Otherwise, allow normal focus out events to be fired, including Scintilla's defaults that hide the cursor, etc.
2015-01-20Code cleanup; src/textadept.cmitchell
2015-01-20Updated to Scintilla 3.5.3.mitchell
2015-01-20Fixed horizontal expand flag for Find & Replace widgets in GTK3; src/textadept.cmitchell
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-12Emit an `events.FOCUS` event after resuming from a suspended state.mitchell
2015-01-12Fixed bug in reporting split views in GTK3; src/textadept.cmitchell
2015-01-09Updated for 7.8 beta 2.mitchell
2015-01-09Updated to latest scintillua, scinterm, lspawn, and gtdialog; src/Makefilemitchell
The last beta used snapshots.
2014-12-31Updated copyright year.mitchell
2014-12-24Added Makefile rule to generate ctags; src/Makefilemitchell
2014-12-24Patched Scintilla to fix curses margin intersection; src/scintilla.patchmitchell
Clicking on the first character in a line caused Scintilla to think the line's margin was clicked, incorrectly selecting the entire line.
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-12-17Fixed curses bug with toggling find options via API; src/textadept.cmitchell