Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-07 | Updated Scintilla hg to get curses improvements. | ||
2020-04-05 | Only print post-initialization errors to buffers. | ||
This avoids infinite loops. Pre-initialization errors are already shown in textbox dialogs. | |||
2020-04-05 | Updated curses compatibility. | ||
2020-04-05 | Updated Scintilla hg to get curses improvements. | ||
Fixed drawing autocompletion lists and calltips on Win32 and enable autoscrolling when clicking and dragging the mouse. | |||
2020-04-01 | Added tag textadept_11.0_alpha for changeset a2d2d240a0b8 | ||
2020-04-01 | Reverted accidental commit. | ||
2020-03-31 | Updated Lua autocompletion and documentation. | ||
Filepaths have a "_HOME" prefix that is expected to be filled in by consumers (e.g. the experimental ctags module). | |||
2020-03-30 | Fixed off-by-one issues with `buffer:get_cur_line()`. | ||
2020-03-30 | Fixed stale statusbar issues introduced recently. | ||
2020-03-30 | Fixed Win32 curses issues. | ||
2020-03-29 | Updated CHANGELOG.md. | ||
2020-03-29 | Code reformatting. | ||
2020-03-29 | Removed old migration guides. | ||
Previous guides are in prior releases and in revision history. | |||
2020-03-29 | Updated for 11.0 alpha. | ||
2020-03-29 | Updated to latest Scintilla to fix embedded lexer issue. | ||
This fixes PHP, Django, and other lexers that embed themselves. | |||
2020-03-26 | Committing temporary iface changes until Scintilla's iface is patched. | ||
2020-03-26 | Added support to identify projects under Fossil SCM. | ||
2020-03-26 | Removed accidentally committed experimental function. | ||
2020-03-26 | Fixed GUI find history. | ||
The wrong end of the history was being overwritten. | |||
2020-03-26 | Removed extra sets of () around some buffer function calls. | ||
The Scintilla iface was changed to not return a second string length value. | |||
2020-03-26 | Switched to 1-based indices for buffer positions, lines, and countable entities. | ||
2020-03-25 | Refactored buffer and view metamethods by splitting them up. | ||
Grouping them saves a few lines of code, but it's not very maintainable. | |||
2020-03-23 | Renamed callback function. | ||
2020-03-23 | Added unit tests for core code in textadept.c. | ||
Most of the core is exercised by the Lua test suite, but coverage lapses can be uncovered using the GCC compiler flags "-fprofile-arcs -ftest-coverage".. | |||
2020-03-22 | Use the statusbar to indicate an active snippet. | ||
This helps avoid disorienting jumps when the user is not aware a snippet is still active. | |||
2020-03-22 | Utilize userdata parameter in signal callback functions. | ||
Ideally, callbacks would not utilize global variables at all. However, passing around just the Lua state seems a bit odd. | |||
2020-03-22 | More code cleanup, reformatting, refactoring, and bug fixing. | ||
2020-03-19 | Fixed tab label display on Windows. | ||
2020-03-19 | Store GTK find/replace history in reverse order. | ||
This allows for traditional command line history navigation using arrow keys. | |||
2020-03-18 | Forgot to commit cdk.patch with widget needed for curses progressbar. | ||
2020-03-18 | Added `ui.dialogs.progressbar()` and utilize it with Find in Files. | ||
2020-03-17 | Added per-mode command entry history. | ||
2020-03-17 | Align block comments by column if possible, not indent. | ||
2020-03-17 | Updated LuaDoc. | ||
2020-03-17 | Show XPM images in Lua command entry completions. | ||
2020-03-17 | Updated manual. | ||
2020-03-17 | Event handlers can now return any non-nil value. | ||
2020-03-17 | Added initial migration guide from Textadept 10 to 11. | ||
2020-03-17 | Updated LuaDoc. | ||
2020-03-17 | Fixed version determination for documentation generation. | ||
Recent code formatting changed the quotes to look for. | |||
2020-03-16 | Moved individual buffer functions in `io` into `buffer`. | ||
e.g. `io.reload_buffer()` was renamed `buffer:reload()`. | |||
2020-03-16 | Language modules should assume `_G.snippets` exists. | ||
2020-03-16 | Update LuaDoc. | ||
2020-03-16 | Renamed `keys.MODE` to `keys.mode`. | ||
2020-03-16 | Use a default width for `ui.dialogs.filteredlist` dialogs. | ||
Experience has shown a vast majority of filteredlist dialogs need to be wide. Use a standard width that needs to be overridden rather than remembered. | |||
2020-03-16 | Small documentation update. | ||
2020-03-16 | Detect and allow jumping to internal Lua errors. | ||
2020-03-16 | Small code cleanup. | ||
2020-03-16 | Updated menu mnemonic for Buffer > Encoding. | ||
2020-03-16 | Fixed crash introduced in previous commit. | ||
The assumption was that `buffer.set_lexer` is only unavailable for the first buffer, which has `buffer:private_lexer_call(SETLEXERLANGUAGE, ...)` called in the `events.BUFFER_NEW` handler. However, `reset()` throws a wrench into everything and a buffer can end up without a lexer. |