Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-06 | Use the current working directory in fileselect dialogs. | ||
This should have been committed long ago. | |||
2014-10-30 | Ensure "find in files" is off when activating normal find. | ||
2014-10-18 | Handle unknown CSI events and bracketed pasted in the terminal version. | ||
For bracketed paste, turn off auto-pair and auto-indent. | |||
2014-10-13 | Parameterize lexer and height for `ui.command_entry.enter_mode()`. | ||
Also enable more accurate Lua command completion. | |||
2014-10-11 | Grow and shrink views by an integral, not arbitrary, value. | ||
2014-10-11 | Move the command entry into a split pane on GTK. | ||
In the previous implementation without a split pane, the command entry could not shrink in size. | |||
2014-10-07 | Automatically add standard editing keys; modules/textadept/command_entry.lua | ||
2014-10-06 | Fixed autocomplete bug in curses; modules/textadept/command_entry.lua | ||
2014-10-05 | Added editing keys for use with other modes; modules/textadept/command_entry.lua | ||
2014-10-05 | Replaced command entry text field with a Scintilla buffer. | ||
`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-29 | Fix replace bug when embedded Lua evals to a number; modules/textadept/find.lua | ||
2014-09-17 | More LuaDoc updates. | ||
2014-09-17 | Added terminal key binding to stop the currently running process. | ||
2014-09-16 | Updated some LuaDoc. | ||
2014-09-15 | Added Xtend lexer; modules/textadept/file_types.lua | ||
Requires latest Scintillua hg. | |||
2014-09-04 | Enable true spawning on Mac OSX GUI version. | ||
This requires lspawn r25 (changeset acdfac5eb4cf). | |||
2014-08-15 | Reverted separating ^H from Backspace in the terminal version. | ||
2014-08-13 | Separate ^H from Backspace in the terminal version. | ||
Also have libtermkey take care of saving and restoring termios. | |||
2014-06-30 | Condensed manual and API documentation into single files. | ||
2014-06-20 | More code cleanup; modules/textadept/editing.lua | ||
2014-06-12 | Lua code cleanup. | ||
2014-06-09 | Fixed word autocompletion bug when ignoring case; modules/textadept/editing.lua | ||
2014-06-04 | Always focus the message buffer initially; modules/textadept/run.lua | ||
This allows process output to be scrolled into view until the user switches buffers. | |||
2014-06-04 | Pressing "Enter" in message buffer simulates double-click. | ||
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-29 | Code cleanup. | ||
2014-05-29 | Fix bug when copying an existing menu/submenu; modules/textadept/menu.lua | ||
2014-05-28 | Store incremental find text for later use; modules/textadept/keys.lua | ||
2014-05-28 | Moved 'lua_command' mode into command entry module and removed some API funcs. | ||
2014-05-28 | Updated LuaDoc. | ||
2014-05-28 | Textadept's menus may be edited in-place via the `textadept.menu` module. | ||
Any changes, even incremental ones, are reflected immediately. As a result, removed `set_menubar()` and `set_contextmenus()` from API. | |||
2014-05-28 | Removed `textadept.editing.select_indented_block()`. | ||
2014-05-28 | Fixed bug in highlighting a word from its end; modules/textadept/editing.lua | ||
2014-05-28 | Removed `HIGHLIGHT_BRACES` option; modules/textadept/editing.lua | ||
Setting the style of `INDIC_BRACEMATCH` to `INDIC_HIDDEN` effectively disables brace highlighting. | |||
2014-05-28 | Utilize list separator characters instead of hard-coded characters. | ||
2014-05-25 | Added character equivalents for XPM images; modules/textadept/editing.lua | ||
2014-05-24 | Removed Adeptsense in favor of new framework committed in r1735. | ||
Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter functions. | |||
2014-05-24 | Updated past Scintilla 3.4.2 for `buffer.auto_c_multi` feature. | ||
Removed workaround for autocompleting in multiple selections. Requires Scintilla changeset 5114:bd09a915437d. | |||
2014-05-23 | Renamed `textadept.editing.autocomplete_word()` and added `AUTOCOMPLETE_ALL`. | ||
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-23 | Fixed bug related to captures from previous searches; modules/textadept/find.lua | ||
2014-05-19 | Fixed bug when double-clicking message buffer; modules/textadept/run.lua | ||
2014-05-19 | Fixed bug in opening Manual from Help menu; modules/textadept/menu.lua | ||
2014-05-19 | Use `spawn()` for launching help; modules/textadept/keys.lua | ||
2014-05-13 | Added block comment support for reST and YAML; modules/textadept/editing.lua | ||
2014-05-10 | Recognize reST and YAML files. | ||
Requires Scintillua r423. | |||
2014-04-30 | Disable output buffering in Python; modules/textadept/run.lua | ||
2014-04-22 | Message buffer can send input to spawned processes; modules/textadept/run.lua | ||
2014-04-10 | Temporarily disable spawn in OSX due to GLib crashes. | ||
2014-04-06 | Clarified "wrapping" in find/replace; modules/textadept/find.lua | ||
2014-04-01 | Workaround for GTKOSX abort; modules/textadept/run.lua | ||
There is a failed assertion related to file descriptors which is somehow caused by executing a Lua callback on process exit. If there is no Lua callback, there is no abort. Closing file descriptors before executing the Lua callback has no effect. | |||
2014-03-28 | Arguments to `spawn()` should be in _CHARSET, not necessarily UTF-8. | ||