Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-15 | Fixed command entry reset bug now that the entry is a Scintilla buffer. | ||
2014-11-09 | Patch Scintilla in order to allow custom line markers; src/scintilla.patch | ||
This is for drawing nearly all line markers as text in the terminal version. This patch is subject to change until Neil applies or modifies the upstream patch I sent. | |||
2014-11-08 | Patch Scintilla in order to allow custom wrap visuals; src/scintilla.patch | ||
This is for drawing wrap markers as text in the terminal version. This patch is subject to change until Neil applies or modifies the upstream patch I sent. | |||
2014-11-07 | Patch Scintilla in order to allow custom tab arrow drawing; src/scintilla.patch | ||
This is for drawing tab arrows as text in the terminal version. This patch is subject to change until Neil applies or modifies the upstream patch I sent. | |||
2014-10-30 | Added `LINUX` and `BSD` platform flags for the sake of completeness. | ||
Previously, Linux was inferred from the expression `not WIN32 and not OSX`. | |||
2014-10-29 | Fixed compiler warnings. | ||
2014-10-29 | Disable GCC optimizations when compiling with DEBUG=1; src/Makefile | ||
2014-10-25 | Patch Scintilla to configure "closeness" of mouse clicks; src/scintilla.patch | ||
This patch is subject to change until Neil applies or modifies the upstream patch I sent. | |||
2014-10-25 | Improvements to terminal mouse handling. | ||
Emit events for unhandled mouse events and connect to such events in order to focus and resize views. Patch libtermkey with new Win32 PDCurses driver for unified key/mouse input. Update CDK patch to always use libtermkey and to ignore mouse events. Requires Scinterm r97 (changeset 8d1a625c9b4d). Thanks to Chris Emerson for proof of concept code that handles mouse events and for the code that focuses and resizes views. | |||
2014-10-24 | Fixed bug in `lL_event()` for LUA_TNUMBER type size mismatches; src/textadept.c | ||
The type extracted for LUA_TNUMBER was `sptr_t` (long), however most of the time, `int` is used. Since `sizeof(long) > sizeof(int)`, `lL_event()` sometimes pushed extra bytes in memory around the original integer passed (at least I think this explains the behavior I observed). | |||
2014-10-22 | Enable terminal mouse clicks and movements in Windows; src/textadept.c | ||
2014-10-21 | Enable mouse clicks and movements in the terminal version. | ||
This requires Scinterm r92 (changset 90ba2dd413c3). | |||
2014-10-18 | Handle unknown CSI events and bracketed pasted in the terminal version. | ||
For bracketed paste, turn off auto-pair and auto-indent. | |||
2014-10-11 | Move the command entry into a split pane on GTK. | ||
In the previous implementation without a split pane, the command entry could not shrink in size. | |||
2014-10-09 | Patch Scintilla to fix pasting from external Win32 apps; src/scintilla.patch | ||
2014-10-05 | Replaced command entry text field with a Scintilla buffer. | ||
`ui.command_entry` now has the same functions and fields as `buffer`s as well as an additional `height` property. Note that when the command entry is active, `_G.buffer` is unchanged, so many existing key commands cannot be bound to command entry key modes. See `keys.lua_command` in *modules/textadept/command_entry.lua* for the proper way to bind them. Removed `ui.command_entry.entry_text` and `ui.command_entry.show_completions()`. | |||
2014-09-30 | Updated to Scintillua 3.5.1-1; src/Makefile | ||
2014-09-29 | Use lspawn 1.0; src/Makefile | ||
2014-09-29 | Updated for 7.7. | ||
2014-09-29 | Updated to Scintilla 3.5.1. | ||
2014-09-01 | Updated to latest lspawn; src/Makefile | ||
2014-09-01 | Updated to Scintillua 3.5.0-1 and Scinterm 1.4; src/Makefile | ||
2014-09-01 | Updated for Textadept 7.6. | ||
2014-08-23 | Patch Scintilla 3.5.0 to compile for Mac OSX; src/scintilla.patch | ||
This patch should be reverted if it is applied upstream. | |||
2014-08-18 | Updated to Scintilla 3.5.0. | ||
2014-08-15 | Correctly recognize DEL when emitted by the Backspace key; src/textadept.c | ||
2014-08-15 | Reverted separating ^H from Backspace in the terminal version. | ||
2014-08-13 | Fixed naming of lspawn object files; src/Makefile | ||
2014-08-13 | Separate ^H from Backspace in the terminal version. | ||
Also have libtermkey take care of saving and restoring termios. | |||
2014-07-19 | Added .desktop files for Linux. | ||
2014-07-18 | Updated to LPeg 0.12; src/Makefile | ||
Requires Scintillua changeset 441. | |||
2014-07-18 | Do not prevent Makefile from passing DEBUG flag to sub-`make`s; src/Makefile | ||
2014-07-12 | Cleaned up Makefile with target-specific variables; src/Makefile | ||
2014-07-12 | Implement spawn functionality for terminal version. | ||
Requires lspawn r21. Thanks to Chris Emerson for proof-of-concept code. Spawning still does not work for Win32 terminal version, though. | |||
2014-07-11 | Fixed documentation generation when `../doc/bombay` isn't present; src/Makefile | ||
2014-07-10 | Updated for 7.5. | ||
2014-07-09 | Refactored bits of the Makefile and added Scintillua et. al. versioning. | ||
2014-07-03 | Updated to Scintilla 3.4.4. | ||
2014-06-30 | Condensed manual and API documentation into single files. | ||
2014-06-20 | Added `event.FOCUS` for when Textadept's window receives focus. | ||
2014-06-10 | Updated for 7.4. | ||
2014-06-07 | Added buffer constants to buffer LuaDoc and improved Lua tags and api generator. | ||
2014-06-07 | Added parameter to `events.UPDATE_UI`. | ||
2014-05-31 | Updated for 7.3. | ||
2014-05-29 | Code cleanup. | ||
2014-05-25 | Updated to Scintilla 3.4.2. | ||
Also temporarily include my upstream patch for autocompletion into multiple selections. When 3.4.3 comes out, the patch may be removed. This commit negates the requirement for Scintilla post 3.4.2, mentioned in 1736:12256c79f24b. | |||
2014-05-24 | Drop support for official java, php, rails, and rhtml modules; src/Makefile | ||
2014-05-10 | Recognize reST and YAML files. | ||
Requires Scintillua r423. | |||
2014-05-10 | Fixed bug in exporting Lua symbols on Windows. | ||
2014-04-30 | Updated for 7.2. | ||