Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-12-31 | Updated copyright year. | ||
2014-12-16 | Updated Luadoc; core/.buffer.luadoc | ||
2014-12-09 | Updated to Scintilla 3.5.2. | ||
2014-11-12 | Code and documentation cleanup. | ||
2014-10-25 | Improvements to terminal mouse handling. | ||
Emit events for unhandled mouse events and connect to such events in order to focus and resize views. Patch libtermkey with new Win32 PDCurses driver for unified key/mouse input. Update CDK patch to always use libtermkey and to ignore mouse events. Requires Scinterm r97 (changeset 8d1a625c9b4d). Thanks to Chris Emerson for proof of concept code that handles mouse events and for the code that focuses and resizes views. | |||
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 | Updated to Scintilla 3.5.1. | ||
2014-09-17 | More LuaDoc updates. | ||
2014-09-16 | Updated some LuaDoc. | ||
2014-08-18 | Updated to Scintilla 3.5.0. | ||
2014-08-15 | Fixed LuaDoc; core/.buffer.luadoc | ||
2014-06-30 | Condensed manual and API documentation into single files. | ||
2014-06-07 | Added buffer constants to buffer LuaDoc and improved Lua tags and api generator. | ||
2014-05-31 | Fixed erroneous LuaDoc. | ||
2014-05-25 | Updated to Scintilla 3.4.2. | ||
Also temporarily include my upstream patch for autocompletion into multiple selections. When 3.4.3 comes out, the patch may be removed. This commit negates the requirement for Scintilla post 3.4.2, mentioned in 1736:12256c79f24b. | |||
2014-05-23 | Renamed `io.set_buffer_encoding()` to `buffer:set_encoding()`. | ||
2014-04-30 | Updated documentation. | ||
2014-03-23 | Updated to Scintilla 3.4.0 and LuaJIT 2.0.3. | ||
2014-02-05 | Updated to Scintilla 3.3.9. | ||
2014-01-12 | Updated copyright information. | ||
2013-12-16 | Updated LuaDoc; core/.buffer.luadoc | ||
2013-12-15 | Updated to Scintilla 3.3.7. | ||
2013-12-12 | More LuaDoc updates. | ||
2013-11-18 | LuaDoc updates. | ||
2013-11-11 | Updated documentation. | ||
2013-11-10 | Updated LuaDoc. | ||
2013-11-07 | Added support for tabs. | ||
2013-10-29 | More documentation updates. | ||
2013-10-21 | More LuaDoc updates. | ||
2013-10-18 | The buffer API applies to all buffers now, not just the global one. | ||
Created a "dummy" Scintilla view for operating on non-global documents. Removed `buffer:check_global()` and replaced `buffer.dirty` with Scintilla's `buffer.modify`. | |||
2013-10-18 | More LuaDoc updates. | ||
2013-10-09 | More LuaDoc updates. | ||
2013-10-02 | Renamed `buffer.FIND_POSIX` to `buffer.FIND_REGEX` for Lua-like captures syntax. | ||
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-15 | Do not convert filenames to UTF-8; keep them in `_CHARSET`. | ||
2013-09-13 | Updated some LuaDoc. | ||
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-30 | Fixed incorrect constants in buffer LuaDoc; core/.buffer.luadoc | ||
2013-08-26 | Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now. | ||
2013-08-24 | Include Scintilla constants in `buffer`s. | ||
2013-07-08 | Renamed "language-specific" modules to just "language modules" in documentation. | ||
2013-05-22 | Documented extended styles in Scintilla; core/.buffer.luadoc | ||
2013-05-20 | Updated to Scintilla 3.3.2. | ||
2013-05-15 | Updated old documentation. | ||
2013-04-26 | Handle new "lexer/current" format from LPeg lexer's API change. | ||
Also refactored modules/textadept/mime_types.lua. Requires Scintillua r357. | |||
2013-04-24 | Renamed `_G.buffer_new()` to `buffer.new()`. | ||
2013-04-12 | Updated to Scintilla 3.3.1. | ||