Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-04-10 | More accurate error message; src/textadept.c | ||
2014-03-27 | Added basic project support for snapopen and build scripts. | ||
Also fixed some curses errors introduced by the last commit. | |||
2014-03-26 | Include my new "lspawn" module by default for spawning processes. | ||
The `textadept.run` module now uses `spawn()` instead of `io.popen()`. This module replaces the dependency on winapi. Removed experimental `io.popen()` and `os.execute()` hooks. They may be re-implemented later using `spawn()`. | |||
2014-03-10 | Fixed Win32 terminal bug that disallowed Shifted characters; src/textadept.c | ||
2014-02-12 | Added split views in the terminal version thanks to Chris Emerson. | ||
2014-02-12 | C code cleanup; src/textadept.c | ||
2014-02-10 | Removed unnecessary return from `main()`; src/textadept.c | ||
2014-01-16 | Small C code cleanup; src/textadept.c | ||
2014-01-12 | Updated copyright information. | ||
2014-01-01 | Merge the separate Textadept and lexer Lua states into a single unified one. | ||
This is an experimental change and requires the latest Scintillua changes. | |||
2013-12-29 | C code cleanup; src/textadept.c | ||
2013-12-19 | Added configurable tab context menus. | ||
Deprecated `textadept.menu.set_contextmenu()` in favor of new `textadept.menu.set_contextmenus()`. | |||
2013-12-19 | Export TermKey instance so CDK can use it for input. | ||
This eliminates the problems caused by libtermkey and CDK having separate input buffers. | |||
2013-12-15 | Updated to Scintilla 3.3.7. | ||
2013-11-19 | Experimental winapi extension for preventing the flashing black box on Windows. | ||
Compile in a stripped version of Steve Donovan's winapi library and override `io.popen` and `os.execute`. | |||
2013-11-10 | `ui.clipboard_text` is no longer read-only. | ||
2013-11-07 | Added support for tabs. | ||
2013-10-30 | Fixed GTK3 bug with split views introduced in r1611; src/textadept.c | ||
2013-10-29 | Fix warnings and errors when compiling for GTK3. | ||
2013-10-18 | The buffer API applies to all buffers now, not just the global one. | ||
Created a "dummy" Scintilla view for operating on non-global documents. Removed `buffer:check_global()` and replaced `buffer.dirty` with Scintilla's `buffer.modify`. | |||
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). |