aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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`.
2013-04-08Make "command_entry_keypress" event more consistent with "keypress" in curses.mitchell
2013-04-08Reduce the delay when pressing the Escape key in curses; src/textadept.cmitchell
2013-04-05Initial support for Windows terminal via pdcurses.mitchell
2013-04-03Textadept should support multiple curses platforms; remove ncurses references.mitchell
Requires Scintilla r4436 and Scinterm r45.
2013-03-31Reverted update to LPeg 0.11 due to crash in multi-lang lexers; src/Makefilemitchell
2013-03-31Updated for 6.5.mitchell
2013-03-29Updated to Lua 5.2.2 and LPeg 0.11.mitchell
2013-03-07Updated documentation; src/textadept.cmitchell
2013-02-27Updated for 6.4.mitchell
2013-02-27Fixed bug with indexable buffer properties that return strings; src/textadept.cmitchell
2013-02-27GtkTable is deprecated in GTK 3.4, use GtkGrid instead; src/textadept.cmitchell
2013-02-23Set gtdialog parent window; src/textadept.cmitchell
This requires gtdialog hg changeset 49 (75a6c2b9b9b7).
2013-01-29Updated for 6.3.mitchell
2013-01-20Updated copyright date.mitchell
2012-12-30Updated for 6.2.mitchell
2012-12-26"make install" and "make ncurses install" install separate binaries.mitchell
2012-12-09Updated for 6.1.mitchell
2012-12-09Remove "-m32" flag when compiling LuaJIT on 32-bit arch; src/Makefilemitchell
This also allows for compiling LuaJIT on ARM.
2012-12-03Fixed bug since readlink() does not append '\0'; src/textadept.cmitchell
2012-11-30Better detect architecture when compiling; src/Makefilemitchell
2012-11-26Do not set DESTDIR and added PREFIX; src/Makefilemitchell
This allows for easier building of packages. Thanks to Pedro Andres Arranda Gutierrez.
2012-10-31Added official Python module; src/Makefilemitchell
2012-10-30Pass "Escape" key to Scintilla correctly in ncurses.mitchell
2012-10-29Updated for 6.0.mitchell
2012-10-22Fix string collation bug in ncurses due to CDK.mitchell
CDK would reset locale settings so autocomplete lists would not sort correctly.
2012-10-16Fixed GUI menu key shortcut handling.mitchell
2012-10-12Code cleanup; src/textadept.cmitchell