aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/adeptsense.lua
AgeCommit message (Collapse)Author
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
2011-02-17Support type-inference through variable assignment.mitchell
2011-02-16Reverted 755; modules/textadept/adeptsense.luamitchell
2011-02-15Add sense.syntax.class_definition for class context completion.mitchell
2011-02-13Show completions for current context too; modules/textadept/adeptsense.luamitchell
2011-02-13Handle \\n sequences properly in apidoc; modules/textadept/adeptsense.luamitchell
2011-02-13Show completions for current context too; modules/textadept/adeptsense.luamitchell
2011-02-10Make adeptsense images user-modifiable; modules/textadept/adeptsense.luamitchell
2011-02-10Show apidoc '\\' sequences properly; modules/textadept/adeptsense.luamitchell
2011-02-09Ensure proper split between symbol and part; modules/textadept/adeptsense.luamitchell
Match as many non-word characters as possible when splitting the symbol and the part.
2011-02-03Fixed bug with Windows paths in goto_ctag(); modules/textadept/adeptsense.luamitchell
2011-01-25Fixed typos.mitchell
2011-01-21Code cleanup.mitchell
2011-01-19Added gui.filteredlist() shortcut function for gui.dialog('filteredlist', ...).mitchell