Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-06 | Fixed bug in processing command line options introduced in r1546. | ||
2013-09-05 | Renamed `ui.docstatusbar_text` to `ui.bufstatusbar_text`. | ||
2013-08-31 | Allow user scripts to handle `BUFFER_NEW` and `VIEW_NEW` events on startup. | ||
A side effect is more efficient event emission during startup. | |||
2013-08-26 | Renamed `gui` to `ui` since it's more applicable. | ||
2013-08-24 | Include Scintilla constants in `buffer`s. | ||
2013-07-17 | Fixed compile error on curses from previous commit; src/textadept.c | ||
2013-07-16 | Save window maximized state in sessions. | ||
Also ensure backward-compatibility with existing session files. | |||
2013-07-08 | Ensure split view is painted by GTK before scrolling it; src/textadept.c | ||
This prevents any disorienting scrolling. | |||
2013-07-08 | Ensure split view is drawn by GTK before scrolling it; src/textadept.c | ||
This prevents any disorienting scrolling. | |||
2013-06-24 | Removed `_G.RESETTING`; test for `arg` instead. | ||
2013-06-08 | No need to initialize static variables; src/textadept.c | ||
C implicitly initializes them to NULL. | |||
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-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-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-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 | 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-07 | Updated documentation; src/textadept.c | ||
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-20 | Updated copyright date. | ||
2012-12-03 | Fixed bug since readlink() does not append '\0'; src/textadept.c | ||
2012-10-30 | Pass "Escape" key to Scintilla correctly in ncurses. | ||
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-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. | |||
2012-09-23 | Do not write ncurses initialization errors over titlebar; src/textadept.c | ||
2012-09-22 | More consistant preproc grouping; src/textadept.c | ||
2012-09-18 | Keep termios disabled in CDK objects; src/textadept.c | ||
2012-09-18 | New Textadept icon. | ||
Added 256x256 icon and updated screenshots. | |||
2012-09-18 | Fixed incremental find in ncurses. | ||
2012-08-26 | Fixed some ncurses memory leaks; src/textadept.c | ||
2012-08-03 | Fixed ncurses bug where replace entry could not be focused; src/textadept.c | ||
2012-07-28 | Enable ncurses on OSX; src/textadept.c | ||
2012-07-28 | Changes to compile for 64-bit Windows. | ||
Since mingw64 cannot compile 64-bit LuaJIT at the moment, textadeptjit64.exe is not built. |