aboutsummaryrefslogtreecommitdiff
path: root/modules/lua/init.lua
AgeCommit message (Collapse)Author
2020-03-03Added test suite and API type checking for more helpful error messages.mitchell
2020-02-19Allow Textadept API completions in special Lua buffers like a Lua REPL.mitchell
2020-02-18Added snippet trigger word completion.mitchell
Also refactored snippet lookup, added options to Lua and C modules to include snippet triggers in autocompletion lists, swapped snippet keybindings, and fixed a bug recognizing lexer-specific snippet files as global.
2020-02-17Treat `textadept.editing.api_files` as already containing empty per-lexer lists.mitchell
The language modules should not overwrite them, as user scripts may define them in on init.
2020-02-07Correctly detect _HOME and _USERHOME Lua files on Windows for autocompletion.mitchell
2019-12-31Updated copyright year.mitchell
2019-11-08API file lists and Lua tags lists can contain functions that return file paths.mitchell
This gives more control over when to include certain autocompletion and documentation files like Textadept's API.
2019-11-07Split Lua and Textadept autocompletion and documentation files.mitchell
Textadept autocompletion and documentation is now only performed on Textadept files. Modified the LuaDoc doclet to only process "lua.luadoc" on its own, and updated the Makefile rule accordingly.
2019-02-16Updated copyright year.mitchell
2018-01-25Updated copyright year.mitchell
2017-07-06Do not attempt to provide autocompletions when there is no context.mitchell
2016-12-31Updated copyright information.mitchell
2016-07-06Document how to generate Lua autocompletion and documentation for user modules.mitchell
2016-06-15Lots of small LuaDoc improvements (grammar mainly).mitchell
2016-04-02Code cleanup.mitchell
Do not use `ipairs()` and use more consistent variable names among other things.
2015-12-31Updated copyright date.mitchell
2015-10-22Refactored 'ansi_c' and 'lua' modules' snippets.mitchell
Also removed command for auto-'end' insertion of Lua control structures since snippets are now favored.
2015-08-08Added automatic syntax-checking capability as files are saved.mitchell
2015-03-16Code cleanup based on the output of luacheck, a Lua linter.mitchell
2015-03-12Lua code cleanup.mitchell
2015-03-10Removed `keys.LANGUAGE_MODULE_PREFIX` key binding.mitchell
2014-12-31Updated copyright year.mitchell
2014-06-30Condensed manual and API documentation into single files.mitchell
2014-05-28Updated LuaDoc.mitchell
2014-05-28Utilize list separator characters instead of hard-coded characters.mitchell
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-04-01Updated Lua Adeptsense; modules/lua/init.luamitchell
2014-03-26Include my new "lspawn" module by default for spawning processes.mitchell
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-12Updated copyright information.mitchell
2013-09-27Integrated compile and run commands for most languages.mitchell
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-15Do not convert filenames to UTF-8; keep them in `_CHARSET`.mitchell
2013-08-26Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now.mitchell
2013-06-12`_M.textadept.editing.block_comment()` supports block comment delimiters.mitchell
Also integrated comment strings into `_M.textadept.editing.comment_string` so block commenting works out of the box.
2013-05-15Set language-specific buffer properties through an event instead of a function.mitchell
2013-04-29More code cleanup.mitchell
"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-03Textadept should support multiple curses platforms; remove ncurses references.mitchell
Requires Scintilla r4436 and Scinterm r45.
2013-01-20Updated copyright date.mitchell
2012-11-19Rewrote LuaDoc.mitchell
2012-11-19Changed Lua code style for tables.mitchell
2012-10-29Updated documentation formatting.mitchell
Pathnames and filenames are italic and be more consistent with constant width text.
2012-10-06Fixed more bugs introduced by r1260.mitchell
2012-09-12Documentation overhaul.mitchell
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-21Converted some `buffer` "get" and "set" functions into properties.mitchell
Also updated to Scintilla 3.2.1.
2012-07-21Lua code cleanup and API changes.mitchell
2012-04-06Respect user annotation preference; modules/lua/init.luamitchell
2012-03-16Moved "Markdown:" comments into module LuaDoc comments.mitchell
2012-03-07Updated contact email address.mitchell
2012-03-07Documentation overhaul with Discount (Markdown implementation).mitchell
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-10Update LuaDoc with new formatting.mitchell