aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/mime_types.lua
AgeCommit message (Collapse)Author
2013-07-08Renamed Textadept module's "mime_types" to "file_types" and removed config file.mitchell
2013-07-08Renamed "language-specific" modules to just "language modules" in documentation.mitchell
2013-06-24Removed `_G.RESETTING`; test for `arg` instead.mitchell
2013-06-21Always emit `events.LANGUAGE_MODULE_LOADED`; modules/textadept/mime_types.luamitchell
Creates an empty language-specific module if none exists. This enables users to add keys and snippets for any lexer without an existing language-specific module. It also allows themes to override styles for any lexer.
2013-06-12Removed `_LEXERPATH`.mitchell
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-26Handle new "lexer/current" format from LPeg lexer's API change.mitchell
Also refactored modules/textadept/mime_types.lua. Requires Scintillua r357.
2013-04-25Code and documentation cleanup.mitchell
2013-01-20Updated copyright date.mitchell
2012-12-15Greatly improve speed when loading large files; modules/textadept/mime_types.luamitchell
2012-11-20Be consistent with regard to "caret" vs. "current position".mitchell
2012-11-19Rewrote LuaDoc.mitchell
2012-10-29Updated documentation formatting.mitchell
Pathnames and filenames are italic and be more consistent with constant width text.
2012-10-08Use '@field' LuaDoc for events defined in modules.mitchell
2012-09-18Use 'text' plain text lexer instead of 'container'.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-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-03-04`_M.set_buffer_properties()` is now optional; modules/textadept/mime_types.luamitchell
2012-02-10Update LuaDoc with new formatting.mitchell
2012-01-06Updated copyright information.mitchell
2012-01-05Rename '_m' to '_M'.mitchell
2012-01-01Code cleanup.mitchell
2011-12-31Changed 'locale.localize()' to global '_L' table.mitchell
2011-12-13Remove 'package.seeall' from LuaDoc comments.mitchell
2011-12-12Remove 'module' and update LuaDoc comments appropriately.mitchell
2011-09-27Reformatted some LuaDoc.mitchell
2011-09-26Lua code cleanup.mitchell
2011-09-25Refactored textadept.c and changed Lua interface a bit.mitchell
'_BUFFERS' and '_VIEWS' now also have buffer and view keys with index values; 'buffer.doc_pointer', 'view.doc_pointer', and 'gui.focused_doc_pointer' are no longer used; 'buffer:check_global()' replaces 'gui.check_focused_buffer()'; Added 'view.buffer' field; 'view:goto_buffer()' and 'gui.goto_view()' arguments changed to make more sense.
2011-06-24Removed '_G' prefix from globals where necessary.mitchell
2011-06-23Use string constants for event names.mitchell
2011-04-20Fixed bug in buffer:get_lexer(); modules/textadept/mime_types.luamitchell
2011-03-17Performance and speed improvements.mitchell
2011-03-14get_lexer(true) returns the lexer at the caret; modules/textadept/mime_types.luamitchell
2011-03-14get_lexer() returns the lexer at the caret; modules/textadept/mime_types.luamitchell
This method is not 100% accurate, but will work for most cases.
2011-03-09Try to determine lexer by file extension last; modules/textadept/mime_types.luamitchell
2011-03-07Load a post_init.lua script for language-specific module extensions.mitchell
2011-01-23Allow language-specific char_matches and braces for _m.textadept.editing.mitchell
Thanks to Robert Gieseke.
2011-01-23Fixed problem with trailing '/'s in Win32; modules/textadept/mime_types.luamitchell
2011-01-21Code cleanup.mitchell
2011-01-19Added gui.filteredlist() shortcut function for gui.dialog('filteredlist', ...).mitchell
2011-01-18Emit an event after loading a language module; modules/textadept/mime_types.luamitchell
2011-01-13More informative check_focused_buffer() error message.mitchell
2010-12-28Updated copyright information.mitchell
2010-11-30New manual.mitchell
2010-11-23Code cleanup.mitchell
Also modified the editing module's enclose() and select_enclosed() functions.
2010-11-15LuaDoc cleanup.mitchell