aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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
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-30Updated for 6.0 beta 3.mitchell
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-29Fixed bug for release names with multiple spaces; src/Makefilemitchell
2012-08-29Updated for 6.0 beta 2.mitchell
2012-08-26Updated tmp rule; src/Makefilemitchell
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-08-01Added 'install' and 'uninstall' rules; src/Makefilemitchell
2012-07-28Updated tmp build environment to include win64gtk; src/Makefilemitchell
2012-07-28Enable ncurses on OSX; src/textadept.cmitchell
2012-07-28Like for OSX and Win32, use any pre-built LuaJIT archives on Linux; src/Makefilemitchell
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-26Updated for 6.0 beta.mitchell
2012-07-26Fixes to compile ncurses version on Mac OSX.mitchell
2012-07-26Compile scintillua with NCURSES flag when necessary; src/Makefilemitchell
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-13Fixes to compile textadept-ncurses on BSD; src/Makefilemitchell
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