aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-03-17Performance and speed improvements.mitchell
2011-03-14Added type inference through 'require' for Lua module; modules/lua/init.luamitchell
2011-03-14Added C standard library to cpp module Adeptsense.mitchell
2011-03-14Trigger Adeptsense in embedded lexers; modules/textadept/adeptsense.luamitchell
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-10Recognize some Ruby on Rails files; modules/textadept/mime_types.confmitchell
2011-03-09Try to determine lexer by file extension last; modules/textadept/mime_types.luamitchell
2011-03-09Snapopen respects filesystem encoding; modules/textadept/snapopen.luamitchell
2011-03-07Load a post_init.lua script for language-specific module extensions.mitchell
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-03-02Fixed typo in manual; doc/manual/10_Advance.mdmitchell
2011-03-01Added tag textadept_3.7_beta_2 for changeset d60279180992mitchell
2011-03-01Updated manual with modules repository information; doc/manual/7_Modules.mdmitchell
2011-03-01Updated documentation; scripts/gen_iface.luamitchell
2011-02-28Include http://modules.textadept.googlecode.com/hg in release; src/Makefilemitchell
2011-02-28Updated for version 3.7 beta 2.mitchell
2011-02-28Updated lua module.mitchell
2011-02-28Readded scripts.mitchell
2011-02-28Provide 64-bit executable for libpng12 used by Debian-based distributions.mitchell
2011-02-28Escape '?' in symbol name for get_apidoc(); modules/textadept/adeptsense.luamitchell
2011-02-28Fixed infinite loop error in select_scope(); modules/textadept/editing.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-26Updated manual.mitchell
2011-02-26Add Adeptsense menu options 'Complete Symbol' and 'Show Documentation'.mitchell
2011-02-26Use Ctrl+H for showing apidoc in cpp and lua modules.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-25Changed Ctrl+H key command (highlight word) to Ctrl+Shift+H.mitchell
Ctrl+H will now show symbol apidoc when available.
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-25Fixed bug with Lua type assignments; modules/lua/adeptsense.luamitchell
2011-02-22Fixed bug with cpp adeptsense type_declarations; modules/cpp/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-21Lua module changes.mitchell
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-13Load user api files for adeptsense language modules.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