aboutsummaryrefslogtreecommitdiff
path: root/src/textadept.c
AgeCommit message (Collapse)Author
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-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-07Updated documentation; src/textadept.cmitchell
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-20Updated copyright date.mitchell
2012-12-03Fixed bug since readlink() does not append '\0'; src/textadept.cmitchell
2012-10-30Pass "Escape" key to Scintilla correctly in ncurses.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
2012-10-12Fixed ncurses bug in command selection introduced by r1256.mitchell
2012-10-04Flush input queue in ncurses when finished with CDK widgets; src/textadept.cmitchell
Otherwise, if 'Esc' is pressed twice rapidly, it is stored in the queue.
2012-09-28Added marks for making selection in ncurses.mitchell
Even though the implementation uses a new `MODIFIED` event, it is left undocumented because it will likely never be a full implementation of SCN_MODIFIED.
2012-09-26Ensure Lua stack has enough elements in `lstring_iconv()`; src/textadept.cmitchell
Thanks to Gilles for pointing out that I left this part out of his patch.
2012-09-25Bugfix for `string.iconv()` from Gilles Grégoire.mitchell
Sometimes the converted text will not fit into its allocated buffer.
2012-09-23Do not write ncurses initialization errors over titlebar; src/textadept.cmitchell
2012-09-22More consistant preproc grouping; src/textadept.cmitchell
2012-09-18Keep termios disabled in CDK objects; src/textadept.cmitchell
2012-09-18New Textadept icon.mitchell
Added 256x256 icon and updated screenshots.
2012-09-18Fixed incremental find in ncurses.mitchell
2012-08-26Fixed some ncurses memory leaks; src/textadept.cmitchell
2012-08-03Fixed ncurses bug where replace entry could not be focused; src/textadept.cmitchell
2012-07-28Enable ncurses on OSX; src/textadept.cmitchell
2012-07-28Changes to compile for 64-bit Windows.mitchell
Since mingw64 cannot compile 64-bit LuaJIT at the moment, textadeptjit64.exe is not built.
2012-07-26Fixes to compile ncurses version on Mac OSX.mitchell
2012-07-23No need for PLAT_* flags; src/textadept.cmitchell
2012-07-21Converted some `buffer` "get" and "set" functions into properties.mitchell
Also updated to Scintilla 3.2.1.
2012-07-18Synchronize copy-paste buffer between Scintilla and CDK widgets.mitchell
2012-07-15Include CDK directly instead of requiring it as a dependency.mitchell
2012-07-13Redirect stderr to avoid drawing to the ncurses window; src/textadept.cmitchell
2012-07-12Refresh the ncurses Scintilla window on startup; src/textadept.cmitchell
2012-07-12Fixed bug with running commands in the ncurses command entry; src/textadept.cmitchell
CDK appears to have a bug in that it cannot register an 'Enter' keypress if KEY_TAB is bound. Compensate by binding KEY_ENTER to run the command.
2012-07-12Fixed bug in highlighting found text in ncurses; src/textadept.cmitchell
2012-07-12Restore termios after running CDK widgets; src/textadept.cmitchell
2012-07-12Handle terminal resizes in ncurses; src/textadept.cmitchell
2012-07-10Fixes to compile on BSD.mitchell
2012-06-27Refactored the Makefile.mitchell
2012-06-24Handle UTF-8 characters correctly in ncurses.mitchell
2012-06-24Refresh the ncurses Scintilla window more accurately; src/textadept.cmitchell
2012-06-22Updated key commands for ncurses.mitchell