aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2014-10-29Fixed bug in ANSI C autocompletion; modules/ansi_c/init.luamitchell
2014-10-18Handle unknown CSI events and bracketed pasted in the terminal version.mitchell
For bracketed paste, turn off auto-pair and auto-indent.
2014-10-13Parameterize lexer and height for `ui.command_entry.enter_mode()`.mitchell
Also enable more accurate Lua command completion.
2014-10-11Grow and shrink views by an integral, not arbitrary, value.mitchell
2014-10-11Move the command entry into a split pane on GTK.mitchell
In the previous implementation without a split pane, the command entry could not shrink in size.
2014-10-07Automatically add standard editing keys; modules/textadept/command_entry.luamitchell
2014-10-06Fixed autocomplete bug in curses; modules/textadept/command_entry.luamitchell
2014-10-05Added editing keys for use with other modes; modules/textadept/command_entry.luamitchell
2014-10-05Replaced command entry text field with a Scintilla buffer.mitchell
`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()`.
2014-09-29Updated Lua autocompletion and documentation.mitchell
2014-09-29Fix replace bug when embedded Lua evals to a number; modules/textadept/find.luamitchell
2014-09-17More LuaDoc updates.mitchell
2014-09-17Added terminal key binding to stop the currently running process.mitchell
2014-09-16Updated some LuaDoc.mitchell
2014-09-15Added Xtend lexer; modules/textadept/file_types.luamitchell
Requires latest Scintillua hg.
2014-09-04Enable true spawning on Mac OSX GUI version.mitchell
This requires lspawn r25 (changeset acdfac5eb4cf).
2014-09-01Updated Lua autocompletion and documentation.mitchell
2014-08-15Reverted separating ^H from Backspace in the terminal version.mitchell
2014-08-13Separate ^H from Backspace in the terminal version.mitchell
Also have libtermkey take care of saving and restoring termios.
2014-07-10Updated Lua autocompletion and documentation.mitchell
2014-06-30Condensed manual and API documentation into single files.mitchell
2014-06-20More code cleanup; modules/textadept/editing.luamitchell
2014-06-12Lua code cleanup.mitchell
2014-06-09Fixed word autocompletion bug when ignoring case; modules/textadept/editing.luamitchell
2014-06-07Added buffer constants to buffer LuaDoc and improved Lua tags and api generator.mitchell
2014-06-04Always focus the message buffer initially; modules/textadept/run.luamitchell
This allows process output to be scrolled into view until the user switches buffers.
2014-06-04Pressing "Enter" in message buffer simulates double-click.mitchell
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.
2014-05-31Updated Lua autocompletions and documentation.mitchell
2014-05-29Code cleanup.mitchell
2014-05-29Fix bug when copying an existing menu/submenu; modules/textadept/menu.luamitchell
2014-05-28Store incremental find text for later use; modules/textadept/keys.luamitchell
2014-05-28Moved 'lua_command' mode into command entry module and removed some API funcs.mitchell
2014-05-28Updated LuaDoc.mitchell
2014-05-28Textadept's menus may be edited in-place via the `textadept.menu` module.mitchell
Any changes, even incremental ones, are reflected immediately. As a result, removed `set_menubar()` and `set_contextmenus()` from API.
2014-05-28Removed `textadept.editing.select_indented_block()`.mitchell
2014-05-28Fixed bug in highlighting a word from its end; modules/textadept/editing.luamitchell
2014-05-28Removed `HIGHLIGHT_BRACES` option; modules/textadept/editing.luamitchell
Setting the style of `INDIC_BRACEMATCH` to `INDIC_HIDDEN` effectively disables brace highlighting.
2014-05-28Utilize list separator characters instead of hard-coded characters.mitchell
2014-05-25Added character equivalents for XPM images; modules/textadept/editing.luamitchell
2014-05-25ANSI C and Lua language module tweaks.mitchell
2014-05-24Removed Adeptsense in favor of new framework committed in r1735.mitchell
Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter functions.
2014-05-24Updated past Scintilla 3.4.2 for `buffer.auto_c_multi` feature.mitchell
Removed workaround for autocompleting in multiple selections. Requires Scintilla changeset 5114:bd09a915437d.
2014-05-23Renamed `textadept.editing.autocomplete_word()` and added `AUTOCOMPLETE_ALL`.mitchell
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.
2014-05-23Fixed bug related to captures from previous searches; modules/textadept/find.luamitchell
2014-05-19Fixed bug when double-clicking message buffer; modules/textadept/run.luamitchell
2014-05-19Fixed bug in opening Manual from Help menu; modules/textadept/menu.luamitchell
2014-05-19Use `spawn()` for launching help; modules/textadept/keys.luamitchell
2014-05-13Added block comment support for reST and YAML; modules/textadept/editing.luamitchell
2014-05-10Recognize reST and YAML files.mitchell
Requires Scintillua r423.
2014-04-30Updated documentation.mitchell