Age | Commit message (Collapse) | Author |
|
|
|
|
|
Suspend can be prevented by an error handler, described in a new FAQ entry.
New `events.RESUME` replaces `events.FOCUS` for the terminal version.
Utilize these events to disable/enable bracketed paste and mouse modes.
|
|
|
|
|
|
|
|
For bracketed paste, turn off auto-pair and auto-indent.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Setting the style of `INDIC_BRACEMATCH` to `INDIC_HIDDEN` effectively disables
brace highlighting.
|
|
|
|
|
|
Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter
functions.
|
|
Removed workaround for autocompleting in multiple selections.
Requires Scintilla changeset 5114:bd09a915437d.
|
|
The new `textadept.editing.autocomplete()` is a generic function for a new
autocompletion framework that will replace Adeptsense. The framework involves
individual autocompletion functions, such as one for autocompleting words.
Also added new `AUTOCOMPLETE_ALL` setting for searching all buffers for word
completions.
|
|
|
|
|
|
|
|
|
|
|
|
It's probably better to have users enable it manually than to do something
unexpected.
|
|
|
|
C/C++ lexer was separated into ANSI C and C++ lexers.
Also took the opportunity to use shorter macros in compile/run commands.
|
|
It used to enclose just the part of the word behind the caret.
|
|
|
|
The caret is always constrained to the first line when no selection is present.
|
|
|
|
|
|
|
|
|
|
|
|
As a result, removed `ui.filteredlist()` and changed `io.open_file()` and
`io.snapopen()` APIs to accept tables of files and paths instead of "\n"
delimited strings.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Removed their respective color settings.
|
|
|
|
A side effect is more efficient event emission during startup.
|
|
|
|
|
|
|
|
|