Age | Commit message (Collapse) | Author |
|
|
|
This feature was inadvertently removed during a refactor.
|
|
|
|
This allows for a superficial separation of buffer- and view-specific Scintilla
functionality. buffers and views can now be used interchangeably for the most
part, and the APIs are guidance, not hard requirements. User scripts do not
require any modification and will continue to function normally.
|
|
|
|
|
|
|
|
|
|
`buffer:brace_bad_light()` was not being given the correct parameters.
|
|
|
|
|
|
This was caused by macros requiring the backspace key to be manually assigned.
|
|
|
|
|
|
Kept backward-compatibility for now.
|
|
The language modules should not overwrite them, as user scripts may define them
in on init.
|
|
There is no ability to read and write to processes on Win32 curses, so disable
the feature.
|
|
This fixes a failing "textadept --help".
|
|
|
|
This gives more control over when to include certain autocompletion and
documentation files like Textadept's API.
|
|
|
|
|
|
|
|
|
|
|
|
This is more convenient than '-e "goto_line(n - 1)"'.
|
|
|
|
|
|
|
|
It can be implemented as a separate user module instead.
|
|
|
|
|
|
|
|
GTK appears to aggressively convert clipboard text to/from UTF-8, even if it
cannot be converted. Try to handle it like Scintilla does by falling back on
ISO-8859-1.
|
|
Lua 5.3 made them optional and LuaJIT support has been dropped.
|
|
Also updated to Lua 5.3 syntax where held back by LuaJIT's 5.1/5.2 syntax.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"Select to Matching Brace" has been moved into
`textadept.editing.select_enclosed()`, which now automatically determines what
to select between if no arguments are given.
|
|
|
|
|
|
|
|
|
|
|
|
|