Age | Commit message (Collapse) | Author |
|
|
|
Patch libtermkey to allow this and also to support mouse enabling/disabling.
Needed to change ^Z undo to M-Z and added M-S-Z as extra redo.
|
|
|
|
Added binding for the terminal version.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This should have been committed long ago.
|
|
|
|
For bracketed paste, turn off auto-pair and auto-indent.
|
|
Also enable more accurate Lua command completion.
|
|
|
|
In the previous implementation without a split pane, the command entry could not
shrink in size.
|
|
|
|
|
|
|
|
`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()`.
|
|
|
|
|
|
|
|
|
|
Requires latest Scintillua hg.
|
|
This requires lspawn r25 (changeset acdfac5eb4cf).
|
|
|
|
Also have libtermkey take care of saving and restoring termios.
|
|
|
|
|
|
|
|
|
|
This allows process output to be scrolled into view until the user switches
buffers.
|
|
In a "Find in Files" buffer, goes to the file on the current line.
In a message buffer, jumps to the error or warning on the current line.
|
|
|
|
|
|
|
|
|
|
|
|
Any changes, even incremental ones, are reflected immediately.
As a result, removed `set_menubar()` and `set_contextmenus()` from API.
|
|
|
|
|
|
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.
|