Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-11-06 | Fixed return values from `ui.dialogs.optionselect()`; core/ui.lua | ||
2014-11-06 | Use the current working directory in fileselect dialogs. | ||
This should have been committed long ago. | |||
2014-10-31 | Change rectangular selection mouse modifier back to Alt on Linux. | ||
Enabled tapping Alt key during mouse selection to convert to rectangular selection and mentioned this in the manual. | |||
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-30 | Ensure "find in files" is off when activating normal find. | ||
2014-10-29 | Fixed compiler warnings. | ||
2014-10-29 | Disable GCC optimizations when compiling with DEBUG=1; src/Makefile | ||
2014-10-29 | Fixed bug in ANSI C autocompletion; modules/ansi_c/init.lua | ||
2014-10-26 | Document that the terminal version does not support drag and drop; doc/manual.md | ||
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-13 | Parameterize lexer and height for `ui.command_entry.enter_mode()`. | ||
Also enable more accurate Lua command completion. | |||
2014-10-11 | Grow and shrink views by an integral, not arbitrary, value. | ||
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-07 | Automatically add standard editing keys; modules/textadept/command_entry.lua | ||
2014-10-06 | Fixed autocomplete bug in curses; modules/textadept/command_entry.lua | ||
2014-10-05 | Added editing keys for use with other modes; modules/textadept/command_entry.lua | ||
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 | Added tag textadept_7.7 for changeset 134a3cd02214 | ||
2014-09-30 | Updated CHANGELOG.md. | ||
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 Lua autocompletion and documentation. | ||
2014-09-29 | Updated for 7.7. | ||
2014-09-29 | State that "Replace in Selection" is for contiguous selections; doc/manual.html | ||
2014-09-29 | Fix replace bug when embedded Lua evals to a number; modules/textadept/find.lua | ||
2014-09-29 | Updated to Scintilla 3.5.1. | ||
2014-09-17 | More LuaDoc updates. | ||
2014-09-17 | Added terminal key binding to stop the currently running process. | ||
2014-09-16 | Updated some LuaDoc. | ||
2014-09-15 | Added Xtend lexer; modules/textadept/file_types.lua | ||
Requires latest Scintillua hg. | |||
2014-09-11 | Fixed corner-case in switching to most recent buffer after closing; core/ui.lua | ||
2014-09-04 | Enable true spawning on Mac OSX GUI version. | ||
This requires lspawn r25 (changeset acdfac5eb4cf). | |||
2014-09-01 | Added tag textadept_7.6 for changeset 6511e089ca4e | ||
2014-09-01 | Updated for 7.6; doc/index.html | ||
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 CHANGELOG.md. | ||
2014-09-01 | Updated for Textadept 7.6. | ||
2014-09-01 | Updated Lua autocompletion and documentation. | ||
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 | Added note about `make deps` when compiling from source; doc/manual.md | ||
2014-08-15 | Fixed LuaDoc; core/.buffer.luadoc | ||