aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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
2013-08-24Include Scintilla constants in `buffer`s.mitchell
2013-08-10Updated for 7.0 beta 2.mitchell
2013-07-19Updated to Scintilla 3.3.4; src/Makefilemitchell
2013-07-17Fixed compile error on curses from previous commit; src/textadept.cmitchell
2013-07-16Save window maximized state in sessions.mitchell
Also ensure backward-compatibility with existing session files.
2013-07-10Updated for 7.0 beta.mitchell
2013-07-08Ensure split view is painted by GTK before scrolling it; src/textadept.cmitchell
This prevents any disorienting scrolling.
2013-07-08Ensure split view is drawn by GTK before scrolling it; src/textadept.cmitchell
This prevents any disorienting scrolling.
2013-06-29Updated for 7.0 alpha 2.mitchell
2013-06-24Removed `_G.RESETTING`; test for `arg` instead.mitchell
2013-06-23Fixed module releases; src/Makefilemitchell
2013-06-23Reverted to lfs 1.6.0 since later versions break the LuaJIT version.mitchell
2013-06-23Use precompiled 64-bit libluajit.a for release and nightly builds; src/Makefilemitchell
2013-06-22Refactored Makefile for release and nightly builds.mitchell
2013-06-21Removed redundant source release.mitchell
2013-06-21Use lfs 1.6.2 instead of latest master; src/Makefilemitchell
2013-06-20Allow multiple jobs; src/Makefilemitchell
2013-06-19Added support for nightly Linux x86_64 build.mitchell
2013-06-17Reverted to LPeg 0.10.2; src/Makefilemitchell
2013-06-15Allow for automated nightly builds; src/Makefilemitchell
2013-06-14Code cleanup; src/Makefilemitchell
2013-06-14New makefile rules for preparing build environments on various platforms.mitchell
2013-06-09New makefile 'osx-app' rule for building Textadept.app.mitchell
Also added some OSX scripts from the bundle to the repository. Requires the latest "GTK+ for OSX bundle".
2013-06-08No need to initialize static variables; src/textadept.cmitchell
C implicitly initializes them to NULL.
2013-06-06Added Makefile rules for creating cross-platform UI build environments.mitchell
2013-06-04Fixed curses autocomplete with the "Enter" key.mitchell
This reverts "Enter" to '\r' in Lua, so make a KEYSYM to retain '\n'.
2013-05-25Updated for 7.0 alpha.mitchell
2013-05-15Rewrote theme implementation.mitchell
Themes are now just single files that share Textadept's Lua state. Also added a new "settings.lua" that functions in place of buffer and view theme files. Requires latest Scintillua.
2013-05-25Updated for 6.6.mitchell
2013-05-21Use '\n' keycode in curses instead of '\r'; src/textadept.cmitchell
Win32-curses still uses '\r' since pdcurses reports it.
2013-05-16Reverted r1412 to allow hiding command entry on focus lost; src/textadept.cmitchell
If command_entry_completion handles keys first, pressing "Tab" after showing completions switches focus to Scintilla without propagating the key. If command_entry handles keys first, pressing "Enter" in the completion list will be incorrectly interpreted as a normal "Enter" press. Reverted to using the "activate" signal to interpret "Enter" so command_entry can handle keys first, keeping "Tab" from switching focus.
2013-05-15Fixed GTK assertion errors when removing find history items; src/textadept.cmitchell
2013-05-12Ensure _XOPEN_SOURCE_EXTENDED is defined for Linux ncurses; src/Makefilemitchell
2013-04-27Updated for 6.6 beta.mitchell
2013-04-26Fixed compilation error for CDK on Mac OSX.mitchell
2013-04-24Do not emit keys while the command entry completion is active; src/textadept.cmitchell
The GtkEntryCompletion's key handler should take precedence over GtkEntry's.
2013-04-24Renamed `_G.buffer_new()` to `buffer.new()`.mitchell
2013-04-21Fixed compilation error for latest Scinterm; src/Makefilemitchell
Requires Scinterm r51.
2013-04-21Updates to compile with latest GTK-OSX.mitchell
This fixes Fn key recognition.
2013-04-15Allow updating of curses command entry text from events; src/textadept.cmitchell
2013-04-15Better key handling in Windows curses; src/textadept.cmitchell
2013-04-11Added key modes and changed the command entry to use them.mitchell
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`.