Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-07-06 | Do not attempt to provide autocompletions when there is no context. | ||
2016-12-31 | Updated copyright information. | ||
2016-07-06 | Document how to generate Lua autocompletion and documentation for user modules. | ||
2016-06-15 | Lots of small LuaDoc improvements (grammar mainly). | ||
2016-04-02 | Code cleanup. | ||
Do not use `ipairs()` and use more consistent variable names among other things. | |||
2015-12-31 | Updated copyright date. | ||
2015-10-22 | Refactored 'ansi_c' and 'lua' modules' snippets. | ||
Also removed command for auto-'end' insertion of Lua control structures since snippets are now favored. | |||
2015-08-08 | Added automatic syntax-checking capability as files are saved. | ||
2015-03-16 | Code cleanup based on the output of luacheck, a Lua linter. | ||
2015-03-12 | Lua code cleanup. | ||
2015-03-10 | Removed `keys.LANGUAGE_MODULE_PREFIX` key binding. | ||
2014-12-31 | Updated copyright year. | ||
2014-06-30 | Condensed manual and API documentation into single files. | ||
2014-05-28 | Updated LuaDoc. | ||
2014-05-28 | Utilize list separator characters instead of hard-coded characters. | ||
2014-05-25 | ANSI C and Lua language module tweaks. | ||
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-04-01 | Updated Lua Adeptsense; modules/lua/init.lua | ||
2014-03-26 | Include my new "lspawn" module by default for spawning processes. | ||
The `textadept.run` module now uses `spawn()` instead of `io.popen()`. This module replaces the dependency on winapi. Removed experimental `io.popen()` and `os.execute()` hooks. They may be re-implemented later using `spawn()`. | |||
2014-01-12 | Updated copyright information. | ||
2013-09-27 | Integrated compile and run commands for most languages. | ||
Compile and run should work out of the box for most languages. Also added a warning marker, renamed `compile_command` and `run_command` tables to `compile_commands` and `run_commands`, respectively, and renamed `error_details` to `error_patterns`, changing its structure to just hold patterns. | |||
2013-09-15 | Do not convert filenames to UTF-8; keep them in `_CHARSET`. | ||
2013-08-26 | Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now. | ||
2013-06-12 | `_M.textadept.editing.block_comment()` supports block comment delimiters. | ||
Also integrated comment strings into `_M.textadept.editing.comment_string` so block commenting works out of the box. | |||
2013-05-15 | Set language-specific buffer properties through an event instead of a function. | ||
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-03 | Textadept should support multiple curses platforms; remove ncurses references. | ||
Requires Scintilla r4436 and Scinterm r45. | |||
2013-01-20 | Updated copyright date. | ||
2012-11-19 | Rewrote LuaDoc. | ||
2012-11-19 | Changed Lua code style for tables. | ||
2012-10-29 | Updated documentation formatting. | ||
Pathnames and filenames are italic and be more consistent with constant width text. | |||
2012-10-06 | Fixed more bugs introduced by r1260. | ||
2012-09-12 | Documentation overhaul. | ||
Rewrote most of the manual and Lua API to complement each other. Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc. | |||
2012-07-21 | Converted some `buffer` "get" and "set" functions into properties. | ||
Also updated to Scintilla 3.2.1. | |||
2012-07-21 | Lua code cleanup and API changes. | ||
2012-04-06 | Respect user annotation preference; modules/lua/init.lua | ||
2012-03-16 | Moved "Markdown:" comments into module LuaDoc comments. | ||
2012-03-07 | Updated contact email address. | ||
2012-03-07 | Documentation overhaul with Discount (Markdown implementation). | ||
The standard LuaDoc template is no longer used. Instead, the new `scripts/markdowndoc.lua` has the template for LuaDoc and `scripts/update_doc` has the template for the Manual. Also added README, CHANGELOG, and THANKS files. | |||
2012-02-10 | Update LuaDoc with new formatting. | ||
2012-01-24 | Rename module shortcut variables. | ||
2012-01-06 | Updated copyright information. | ||
2012-01-05 | Rename '_m' to '_M'. | ||
2011-12-31 | Code cleanup. | ||
2011-12-13 | Remove 'package.seeall' from LuaDoc comments. | ||
2011-12-12 | Remove 'module' and update LuaDoc comments appropriately. | ||
2011-12-12 | Updated to Lua 5.2. | ||
2011-09-26 | Lua code cleanup. | ||
2011-07-13 | Refactored key commands and added menu accelerators. | ||
Key commands are now in keys.conf and keys.osx.conf which are loaded by the _m.textadept.menu module. | |||
2011-06-28 | Small Adeptsense improvements. | ||