Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-24 | Added `events.TAB_CLICKED` event. | ||
This allows for the user to override the default switch behavior (e.g. switch to an existing split view that already has the target buffer open). Thanks to Gabriel Dubatti. | |||
2016-07-11 | Updated for 9.0 alpha 2. | ||
2016-07-04 | Replaced Lua pattern matching with Regex via Scintilla and TRE. | ||
As a result, changed `ui.find.lua` to `ui.find.regex` Also removed luautf8 dependency since it is no longer needed. Regex replacements cannot contain embedded Lua code. Jumping to "find in files" results selects those results instead of just jumping to their respective lines. | |||
2016-07-04 | Fixed OSX build; src/Makefile | ||
libgthread.dylib is still required by at least libgtkmacintegration.dylib. | |||
2016-07-01 | Fixed compile error introduced in the terminal version; src/textadept.c | ||
2016-06-30 | Updated for 9.0 alpha. | ||
2016-06-25 | Combined view metamethods into one and cleaned up some code and comments. | ||
Also added placeholder code for emulating view-specific properties. | |||
2016-06-16 | Changed arguments to `ui.goto_view()` and `view:goto_buffer()`. | ||
They can accept either objects or relative numbers now. They do not accept absolute indices anymore. | |||
2016-06-11 | Updated to Lua 5.3.3. | ||
2016-06-05 | Updated to Scintilla 3.6.6; src/Makefile | ||
2016-04-29 | Updated for 8.7. | ||
2016-04-26 | Updated Scintilla, Scinterm, and lspawn; src/Makefile | ||
2016-04-09 | More efficient window refreshing in the terminal version; src/textadept.c | ||
Requires Scinterm r150 (changeset ca37264a865c). | |||
2016-04-05 | Improved efficiency of word autocompletion from all buffers. | ||
Also fixed a bug that reset some non-focused buffer properties. | |||
2016-04-05 | Import Lua UTF-8 pattern functions directly into `utf8` library from C. | ||
2016-03-26 | Always link to iconv on BSD; src/Makefile | ||
Do not assume GTK+'s pkg-config lib flags give iconv. | |||
2016-03-26 | Support UTF-8 Lua pattern matching. | ||
Makes use of an external luautf8 library, but only a subset of it. | |||
2016-03-22 | Only show the menubar if there are menus; src/textadept.c | ||
2016-03-18 | Updated to Scintilla and Scintillua 3.6.4; src/Makefile | ||
2016-02-29 | Temporarily use latest version of Scintillua; src/Makefile | ||
2016-02-29 | Updated for 8.6. | ||
2016-02-25 | Updated to lspawn 1.4; src/Makefile | ||
2016-02-17 | Fixed potential buffer overflow; src/textadept.c | ||
Thanks to Markus F.X.J. Oberhumer. | |||
2016-02-05 | Fix building CDK in debug mode. | ||
In debug mode, inline functions are not inlined, so ensure internal linkage. Thanks to Markus F.X.J. Oberhume. | |||
2016-02-03 | Ensure Win32 single instance thread is terminated on exit; src/textadept.c | ||
2016-02-03 | Updated to Scinterm 1.7; src/Makefile | ||
2016-02-01 | Use an archived CDK version instead of the latest; src/Makefile | ||
Otherwise building Textadept from the source could break at any time. | |||
2016-01-30 | Replaced `buffer:text_range()` C function with a Lua function. | ||
2016-01-30 | Added single-instance functionality for Win32 and require GLib 2.28+. | ||
Thanks to Carl Sturtivant for the Win32 proof-of-concept code. | |||
2016-01-30 | Code cleanup; src/textadept.c | ||
2016-01-29 | Fixed focus bug in `view:goto_buffer()` with non-focused view; src/textadept.c | ||
2016-01-29 | `buffer:clear_cmd_key()` should only take one argument. | ||
The `bit32` library makes bit shifting easier. | |||
2016-01-23 | Updated to Scintillua 3.6.3-1; src/Makefile | ||
2016-01-20 | Updated to Scintilla 3.6.3 and enabled idle styling. | ||
Patched Scintilla to prevent warning on widget destroy. | |||
2015-12-31 | Use the latest hg version of Scintillua; src/Makefile | ||
2015-12-31 | Updated copyright date. | ||
2015-12-31 | Updated for 8.5. | ||
2015-12-06 | Updated to Lua 5.3.2. | ||
2015-11-13 | No need to PGP sign non-source archives; src/Makefile | ||
2015-11-11 | PGP sign packages for added integrity. | ||
2015-11-07 | Updated for 8.4. | ||
2015-11-07 | Updated to Scintilla and Scintillua 3.6.2. | ||
2015-10-14 | Updated to LPeg 1.0; src/Makefile | ||
2015-10-12 | Fixed S-Tab binding in CDK widgets; src/cdk.patch | ||
2015-10-01 | Updated lspawn and Scintillua dependency versions; src/Makefile | ||
2015-10-01 | Updated for 8.3. | ||
2015-09-29 | Added Gherkin lexer. | ||
Requires Scintillua r514 (changeset 8bce8ef421d7). | |||
2015-09-15 | Updated to Scintilla 3.6.1. | ||
2015-08-31 | Updated for 8.2. | ||
2015-08-11 | Fixed segfault when quitting while the command entry is open; src/textadept.c | ||