aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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
2014-12-17Fix CDK warning; src/cdk.patchmitchell
2014-12-12Removed unused variable; src/Makefilemitchell
2014-12-09Updated to Scintilla 3.5.2.mitchell
2014-11-30Patch Scintilla to sometimes prevent call tip repositioning; src/scintilla.patchmitchell
When the call tip is smaller than the window (such as the command entry), keep existing position in order to keep the call tip from appearing in front of buffer text.
2014-11-30Updated for 7.8 beta.mitchell
2014-11-29Fixed command entry reset bug for real instead of in r1861.mitchell
2014-11-26Integrated Chris Emerson's curses split view window manager.mitchell
2014-11-26Allow connection to `events.QUIT` without requiring index of 1.mitchell
2014-11-24Keep command entry focus when window loses focus; src/textadept.cmitchell
2014-11-24No need for a separate build dir for automated builds; src/Makefilemitchell
2014-11-23Patch CDK for basic UTF-8 support.mitchell
The find & replace pane and UI dialogs can now handle UTF-8 characters. The support is functional, but not perfect. Since the patch only targets the widgets Textadept uses, it cannot be submitted to upstream CDK for inclusion. It's kind of a hack anyway.
2014-11-22Small Makefile changes; src/Makefilemitchell
2014-11-20Updated Scintilla patch to match upstream patch; src/scintilla.patchmitchell
Upstream patch is in r5324 (changeset d17b39c9eb2a).