aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/adeptsense.lua
AgeCommit message (Collapse)Author
2012-04-12Added note about documenting module fields; modules/textadept/adeptsense.luamitchell
2012-03-16Moved "Markdown:" comments into module LuaDoc comments.mitchell
2012-03-15Added documentation for generating API documentation and Lua Adeptsense.mitchell
2012-03-15Added note about child Adeptsenses; modules/textadept/adeptsense.luamitchell
2012-03-14Use buffer:get_lexer(true) more often when it should be used.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-26Support multiple '@return' tags in Lua Adeptsense documentation.mitchell
2012-02-10Update LuaDoc with new formatting.mitchell
2012-01-06Updated copyright information.mitchell
2012-01-05Do not clear registered images when completing; modules/textadept/adeptsense.luamitchell
2012-01-05Rename '_m' to '_M'.mitchell
2012-01-01Code cleanup.mitchell
2011-12-13Remove 'package.seeall' from LuaDoc comments.mitchell
2011-12-12Remove 'module' and update LuaDoc comments appropriately.mitchell
2011-10-26Fixed Adeptsense autocomplete for single item; modules/textadept/adeptsense.luamitchell
2011-09-27Reformatted some LuaDoc.mitchell
2011-09-26Lua code cleanup.mitchell
2011-09-08Fix bug with CALL_TIP_CLICK event disconnect; modules/textadept/adeptsense.luamitchell
2011-08-17Autocompletion list sort order respects buffer.auto_c_ignore_case.mitchell
2011-08-09Autocomplete supports multiple selections.mitchell
Contributed by Brian Schott.
2011-07-31Fixed pixmaps for use with Scintilla 2.28; modules/textadept/adeptsense.luamitchell
2011-07-29Eliminated the need for keys.conf and keys.osx.conf.mitchell
Thanks to Robert Gieseke for the idea and prototype code.
2011-07-27Fixed formatting in Adeptsense LuaDoc; modules/textadept/adeptsense.luamitchell
2011-06-28Small Adeptsense improvements.mitchell
2011-06-24Removed '_G' prefix from globals where necessary.mitchell
2011-06-23Use string constants for event names.mitchell
2011-06-23Updated Luadoc and added extra fields to other modules.mitchell
2011-04-03Added syntax.type_declarations_exclude Luadoc; modules/textadept/adeptsense.luamitchell
2011-03-26Applied patches from Robert for minor fixes.mitchell
2011-03-24Allow exclusions for type_declaration matches; modules/textadept/adeptsense.luamitchell
2011-03-20Fixed bug with Adeptsense apidoc calltip; modules/textadept/adeptsense.luamitchell
2011-03-17Performance and speed improvements.mitchell
2011-03-14Trigger Adeptsense in embedded lexers; modules/textadept/adeptsense.luamitchell
2011-03-07Fix bugs caused by r791 and r766; modules/textadept/adeptsense.luamitchell
2011-03-07Do not overwrite existing completions; modules/textadept/adeptsense.luamitchell
2011-03-03Remove non-toplevel class completions; modules/textadept/adeptsense.luamitchell
2011-03-03Use context class in get_apidoc() if necessary; modules/textadept/adeptsense.luamitchell
2011-03-03Match class literally in get_apidoc(); modules/textadept/adeptsense.luamitchell
2011-03-03Use superclass completions for unknown class; modules/textadept/adeptsense.luamitchell
For unknown classes that inherit superclasses, show the superclass completions. This is intended for Ruby on Rails development where regenerating ctags for each new controller, model, etc. is tedious.
2011-02-28Escape '?' in symbol name for get_apidoc(); modules/textadept/adeptsense.luamitchell
2011-02-28Replace full_symbol_api with word_chars; modules/textadept/adeptsense.luamitchell
full_symbol_api was a workaround for patterns with fixed word characters. The latter is now an Adeptsense parameter.
2011-02-28Condense language modules into single init.lua file.mitchell
2011-02-26Changes in apidoc handling; modules/textadept/adeptsense.luamitchell
Lookup documentation for the selected symbol or symbol under the caret as opposed to needing the caret to the right of a '('. Also, allow full symbols to be present in api files instead of just their names.
2011-02-25Escape pattern chars when searching apidoc; modules/textadept/adeptsense.luamitchell
2011-02-25Allow for raw symbol matching in get_apidoc(); modules/textadept/adeptsense.luamitchell
2011-02-22Recursively add inherited completions; modules/textadept/adeptsense.luamitchell
2011-02-22Added sense.always_show_globals option; modules/textadept/adeptsense.luamitchell
2011-02-21Added tutorial for creating Adeptsense; modules/textadept/adeptsense.luamitchell
2011-02-18Fixed bug with assignment type-inference; modules/textadept/adeptsense.luamitchell