aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept
AgeCommit message (Collapse)Author
2011-07-11Added io.open_recent_file().mitchell
2011-06-30Localize the labels and buttons in the find GUI frame; src/textadept.cmitchell
2011-06-28Small Adeptsense improvements.mitchell
2011-06-24Removed '_G' prefix from globals where necessary.mitchell
2011-06-24Compile and Run commands emit events; modules/textadept/run.luamitchell
2011-06-23Use string constants for event names.mitchell
2011-06-23Updated Luadoc and added extra fields to other modules.mitchell
2011-06-16Use functions for generating unique IDs for markers, indicators, and user lists.mitchell
2011-05-30Added menu accelerators for indentation size; modules/textadept/menu.luamitchell
2011-05-09Fixed bug in snippets.get_end_position(); modules/textadept/snippets.luamitchell
2011-05-05Removed non-existant key chain; modules/textadept/keys.luamitchell
2011-04-29Added note to use tabs in snippets; modules/textadept/snippets.luamitchell
2011-04-20Fixed incorrect key command; modules/textadept/keys.luamitchell
2011-04-20Fixed bug in buffer:get_lexer(); modules/textadept/mime_types.luamitchell
2011-04-03Added syntax.type_declarations_exclude Luadoc; modules/textadept/adeptsense.luamitchell
2011-03-29Fixed some snippet bugs; modules/textadept/snippets.luamitchell
2011-03-29Handle nil args in gui.print() and set caret after printing.mitchell
2011-03-27Change menu caption for snippet's 'Insert' to 'Expand'.mitchell
2011-03-26Applied patches from Robert for minor fixes.mitchell
2011-03-26Updated snippets escape sequence documentation; modules/textadept/snippets.luamitchell
2011-03-25Snapopen allows multiple files to be selected now.mitchell
2011-03-24Changes to key and menu command definitions.mitchell
Functions can be used directly without being contained within a table. Also, buffer and view functions and references should be used directly (e.g. { buffer.undo, buffer } and { view.split, view }). References are handled correctly at runtime.
2011-03-24Allow exclusions for type_declaration matches; modules/textadept/adeptsense.luamitchell
2011-03-24Use indicators instead of markers at snippet end; modules/textadept/snippets.luamitchell
2011-03-23Code cleanup and fixed bugs introduced; modules/textadept/snippets.luamitchell
2011-03-23Rewrote _m.textadept.snippets module.mitchell
Snippet syntax has changed; see LuaDoc for details.
2011-03-20Fixed bug with Adeptsense apidoc calltip; modules/textadept/adeptsense.luamitchell
2011-03-18Fixed snippet bugs; modules/textadept/snippets.luamitchell
2011-03-17Updated mime-types; modules/textadept/mime_types.confmitchell
2011-03-17Performance and speed improvements.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-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-26Add Adeptsense menu options 'Complete Symbol' and 'Show Documentation'.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.