Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-04 | Fixed curses autocomplete with the "Enter" key. | ||
This reverts "Enter" to '\r' in Lua, so make a KEYSYM to retain '\n'. | |||
2013-05-25 | Updated for 7.0 alpha. | ||
2013-05-15 | Rewrote theme implementation. | ||
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-25 | Updated for 6.6. | ||
2013-05-21 | Use '\n' keycode in curses instead of '\r'; src/textadept.c | ||
Win32-curses still uses '\r' since pdcurses reports it. | |||
2013-05-16 | Reverted r1412 to allow hiding command entry on focus lost; src/textadept.c | ||
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-15 | Fixed GTK assertion errors when removing find history items; src/textadept.c | ||
2013-05-12 | Ensure _XOPEN_SOURCE_EXTENDED is defined for Linux ncurses; src/Makefile | ||
2013-04-27 | Updated for 6.6 beta. | ||
2013-04-26 | Fixed compilation error for CDK on Mac OSX. | ||
2013-04-24 | Do not emit keys while the command entry completion is active; src/textadept.c | ||
The GtkEntryCompletion's key handler should take precedence over GtkEntry's. | |||
2013-04-24 | Renamed `_G.buffer_new()` to `buffer.new()`. | ||
2013-04-21 | Fixed compilation error for latest Scinterm; src/Makefile | ||
Requires Scinterm r51. | |||
2013-04-21 | Updates to compile with latest GTK-OSX. | ||
This fixes Fn key recognition. | |||
2013-04-15 | Allow updating of curses command entry text from events; src/textadept.c | ||
2013-04-15 | Better key handling in Windows curses; src/textadept.c | ||
2013-04-11 | Added key modes and changed the command entry to use them. | ||
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`. | |||
2013-04-08 | Make "command_entry_keypress" event more consistent with "keypress" in curses. | ||
2013-04-08 | Reduce the delay when pressing the Escape key in curses; src/textadept.c | ||
2013-04-05 | Initial support for Windows terminal via pdcurses. | ||
2013-04-03 | Textadept should support multiple curses platforms; remove ncurses references. | ||
Requires Scintilla r4436 and Scinterm r45. | |||
2013-03-31 | Reverted update to LPeg 0.11 due to crash in multi-lang lexers; src/Makefile | ||
2013-03-31 | Updated for 6.5. | ||
2013-03-29 | Updated to Lua 5.2.2 and LPeg 0.11. | ||
2013-03-07 | Updated documentation; src/textadept.c | ||
2013-02-27 | Updated for 6.4. | ||
2013-02-27 | Fixed bug with indexable buffer properties that return strings; src/textadept.c | ||
2013-02-27 | GtkTable is deprecated in GTK 3.4, use GtkGrid instead; src/textadept.c | ||
2013-02-23 | Set gtdialog parent window; src/textadept.c | ||
This requires gtdialog hg changeset 49 (75a6c2b9b9b7). | |||
2013-01-29 | Updated for 6.3. | ||
2013-01-20 | Updated copyright date. | ||
2012-12-30 | Updated for 6.2. | ||
2012-12-26 | "make install" and "make ncurses install" install separate binaries. | ||
2012-12-09 | Updated for 6.1. | ||
2012-12-09 | Remove "-m32" flag when compiling LuaJIT on 32-bit arch; src/Makefile | ||
This also allows for compiling LuaJIT on ARM. | |||
2012-12-03 | Fixed bug since readlink() does not append '\0'; src/textadept.c | ||
2012-11-30 | Better detect architecture when compiling; src/Makefile | ||
2012-11-26 | Do not set DESTDIR and added PREFIX; src/Makefile | ||
This allows for easier building of packages. Thanks to Pedro Andres Arranda Gutierrez. | |||
2012-10-31 | Added official Python module; src/Makefile | ||
2012-10-30 | Pass "Escape" key to Scintilla correctly in ncurses. | ||
2012-10-29 | Updated for 6.0. | ||
2012-10-22 | Fix string collation bug in ncurses due to CDK. | ||
CDK would reset locale settings so autocomplete lists would not sort correctly. | |||
2012-10-16 | Fixed GUI menu key shortcut handling. | ||
2012-10-12 | Code cleanup; src/textadept.c | ||
2012-10-12 | Fixed ncurses bug in command selection introduced by r1256. | ||
2012-10-04 | Flush input queue in ncurses when finished with CDK widgets; src/textadept.c | ||
Otherwise, if 'Esc' is pressed twice rapidly, it is stored in the queue. | |||
2012-09-30 | Updated for 6.0 beta 3. | ||
2012-09-28 | Added marks for making selection in ncurses. | ||
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-26 | Ensure Lua stack has enough elements in `lstring_iconv()`; src/textadept.c | ||
Thanks to Gilles for pointing out that I left this part out of his patch. | |||
2012-09-25 | Bugfix for `string.iconv()` from Gilles Grégoire. | ||
Sometimes the converted text will not fit into its allocated buffer. |