Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-17 | Added terminal key binding to stop the currently running process. | ||
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-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 | Removed `textadept.editing.select_indented_block()`. | ||
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-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-19 | Use `spawn()` for launching help; modules/textadept/keys.lua | ||
2014-03-27 | Added basic project support for snapopen and build scripts. | ||
Also fixed some curses errors introduced by the last commit. | |||
2014-03-24 | Apparently newer versions of OSX use "Esc"; modules/textadept/keys.lua | ||
Corrected documentation. | |||
2014-03-01 | Use `assert(...)` as a shortcut for `if not ... then error() end`. | ||
2014-02-12 | Added split views in the terminal version thanks to Chris Emerson. | ||
2014-01-12 | Updated copyright information. | ||
2013-10-18 | Added "Save All" to the menu. | ||
2013-09-21 | Renamed `buffer:convert_eo_ls()` to `buffer:convert_eols()`. | ||
2013-09-16 | Removed the `SC` prefix from most constants in `_SCINTILLA.constants`. | ||
2013-09-16 | Removed the `SC_` prefix from constants in `_SCINTILLA.constants`. | ||
Also removed more unused constants. | |||
2013-09-09 | Moved buffer IO functions into the `io` module. | ||
Menus and key bindings do not need `events.INITIALIZED`. | |||
2013-09-01 | Renamed `buffer:get_style_name(n)` to `buffer.style_name[n]`. | ||
2013-08-31 | Allow user scripts to handle `BUFFER_NEW` and `VIEW_NEW` events on startup. | ||
A side effect is more efficient event emission during startup. | |||
2013-08-26 | Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now. | ||
2013-08-26 | Renamed `gui` to `ui` since it's more applicable. | ||
2013-08-24 | Include Scintilla constants in `buffer`s. | ||
2013-07-08 | Renamed Textadept module's "mime_types" to "file_types" and removed config file. | ||
2013-07-08 | Added curses keys to key bindings documentation; modules/textadept/keys.lua | ||
2013-06-24 | Consolidated bookmarks module's "goto" functions into a new `goto_mark()`. | ||
2013-06-24 | Removed `_G.RESETTING`; test for `arg` instead. | ||
2013-06-21 | Remove theme selection since it does not persist. | ||
Encourage calling `gui.set_theme()` from *~/.textadept/init.lua* instead. | |||
2013-05-15 | Rewrote theme implementation. | ||
Themes are now just single files that share Textadept's Lua state. Also added a new "settings.lua" that functions in place of buffer and view theme files. Requires latest Scintillua. | |||
2013-04-29 | More code cleanup. | ||
"local buffer = buffer" and similar optimizations are not needed since lexing the buffer is much more expensive and reaction time is limited by how fast the keyboard can submit key presses. | |||
2013-04-26 | Consolidated the editing module's `grow_selection()` into `enclose_selected()`. | ||
The former was originally designed to complement the latter. | |||
2013-04-25 | Added icons to msgbox dialogs. | ||
Requires gtdialog r56. | |||
2013-04-24 | Renamed `goto_file_in_list()` to `goto_file_found()` and revamped functionality. | ||
Also changed experimental find incremental API. | |||
2013-04-24 | Mark recognized errors in compile/run output and added navigation functions. | ||
2013-04-24 | Moved `_M.textadept.filter_through` functionality into `editing` module. | ||
2013-04-24 | Use `buffer.word_chars` for autocompleting words instead of a Lua pattern. | ||
2013-04-24 | Renamed `_G.buffer_new()` to `buffer.new()`. | ||
2013-04-19 | Updated some documentation. | ||
2013-04-15 | Updated Windows curses key bindings; modules/textadept/keys.lua | ||
2013-04-11 | Added key modes and changed the command entry to use them. | ||
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`. | |||
2013-04-03 | Textadept should support multiple curses platforms; remove ncurses references. | ||
Requires Scintilla r4436 and Scinterm r45. | |||
2013-03-25 | Added lfs.dir_foreach() for allowing Find in Files to have a filter. | ||
Also moved snapopen module into core as io.snapopen(). | |||
2013-02-26 | Removed useless gui.dialog() options for fileopen/filesave. | ||
2013-01-20 | Updated copyright date. | ||
2013-01-03 | Use `buffer.selection_mode` for ncurses mark mode; modules/textadept/keys.lua | ||
This requires Scintilla hg changeset 4323 (91f84362eeb0). | |||
2012-11-19 | Rewrote LuaDoc. | ||
2012-11-19 | Changed Lua code style for tables. | ||