aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-01Disable showing help in ncurses; core/args.luamitchell
Lua 'print' statements do not work properly once ncurses has been initialized and there is no way to print to a buffer without overwriting an existing session on exit.
2012-08-01Added 'install' and 'uninstall' rules; src/Makefilemitchell
2012-08-01Added tag textadept_6.0_beta for changeset afd8bde8ffaemitchell
2012-07-31Updated FAQ.md.mitchell
2012-07-29Updated CHANGELOG.md.mitchell
2012-07-28Updated FAQ.md mentioning lack of LuaJIT on 64-bit Windows.mitchell
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 migration guide; doc/14_Appendix.mdmitchell
2012-07-26Updated for 6.0 beta.mitchell
2012-07-26Note ncurses compatibility with scrolling long lines; doc/14_Appendix.mdmitchell
2012-07-26Added notes on compiling ncurses version; doc/12_Compiling.mdmitchell
2012-07-26Fixes to compile ncurses version on Mac OSX.mitchell
2012-07-26More ncurses compatibility notes; doc/14_Appendix.mdmitchell
2012-07-26Compile scintillua with NCURSES flag when necessary; src/Makefilemitchell
2012-07-23No need for PLAT_* flags; src/textadept.cmitchell
2012-07-23Disable menus in ncurses for now; modules/textadept/menu.luamitchell
2012-07-21Updated Lua Adeptsense.mitchell
2012-07-21Link to gtdialog documentation in LuaDoc; core/gui.luamitchell
2012-07-21Updated modules/textadept/menu.lua with new API.mitchell
2012-07-21More Lua code cleanup and API changes.mitchell
2012-07-21Converted some `buffer` "get" and "set" functions into properties.mitchell
Also updated to Scintilla 3.2.1.
2012-07-21Lua code cleanup and API changes.mitchell
2012-07-19Note insert mode caret compatibility with ncurses; doc/14_Appendix.mdmitchell
2012-07-19Cycle through api docs with the same command; modules/textadept/adeptsense.luamitchell
2012-07-18Synchronize copy-paste buffer between Scintilla and CDK widgets.mitchell
2012-07-17Added function to check if a localized message exists; core/locale.luamitchell
2012-07-17Remove mnemonics from localized ncurses strings; core/locale.luamitchell
2012-07-17Note marker compatibility with ncurses.mitchell
2012-07-16Added ncurses compatibility notes to the manual Appendix.mitchell
2012-07-16Code cleanup.mitchell
2012-07-16Support highlight word markers in ncurses; modules/textadept/editing.luamitchell
Indicator boxes are not shown since they are overwritten when drawing the text lines.
2012-07-16Support bookmarks in ncurses; modules/textadept/bookmarks.luamitchell
2012-07-16Reverted r1189; ncurses command entry key command is M-C again.mitchell
2012-07-15Added notes on the included version of CDK for ncurses; doc/12_Compiling.mdmitchell
2012-07-15Include CDK directly instead of requiring it as a dependency.mitchell
2012-07-15Changed ncurses command entry key command from M-C to M-E.mitchell
2012-07-14Use text "images" for ncurses Adeptsense lists; modules/textadept/adeptsense.luamitchell
2012-07-14Enable additional selection typing in ncurses; themes/term/view.luamitchell
2012-07-13Redirect stderr to avoid drawing to the ncurses window; src/textadept.cmitchell
2012-07-13Updated documentation on compiling.mitchell
Thanks to Bill Meahan for help with compiling on BSD.
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
2012-07-12Handle terminal resizes in ncurses; src/textadept.cmitchell
2012-07-10Fixes to compile on BSD.mitchell