aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept
AgeCommit message (Collapse)Author
2011-08-09Autocomplete supports multiple selections.mitchell
Contributed by Brian Schott.
2011-08-08Add recent file list to session; modules/textadept/session.luamitchell
2011-08-08Do not autosave over explicitly loaded session; modules/textadept/session.luamitchell
2011-08-03Updated modules/textadept/mime_types.conf.mitchell
2011-07-31Fixed pixmaps for use with Scintilla 2.28; modules/textadept/adeptsense.luamitchell
2011-07-31Updated documentation; modules/textadept/keys.lumitchell
2011-07-30Code cleanup.mitchell
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-28keys.conf and keys.osx.conf can be in English or localized.mitchell
2011-07-27Fixed formatting in Adeptsense LuaDoc; modules/textadept/adeptsense.luamitchell
2011-07-16Add key commands that were previously undefined.mitchell
2011-07-16Added Toggle Fold menu command.mitchell
2011-07-16Removed Lexer menu in favor of 'Buffer->Select Lexer...'.mitchell
2011-07-16Rearranged Buffer and View menus and changed various accelerators.mitchell
2011-07-16Rearranged Edit menu and accelerators.mitchell
2011-07-16Moved Adeptsense commands into Tools menu.mitchell
2011-07-15Fixed accelerator conflict in menu.mitchell
2011-07-15Added menu and keys for moving lines up and down.mitchell
2011-07-14Added Upper and Lower menu commands for selection case.mitchell
2011-07-14Renamed _m.textadept.editing.SAVE_STRIPS_WS to STRIP_WHITESPACE_ON_SAVE.mitchell
2011-07-14Changed menu labels to be more descriptive and added select_command() dialog.mitchell
2011-07-13Refactored key commands and added menu accelerators.mitchell
Key commands are now in keys.conf and keys.osx.conf which are loaded by the _m.textadept.menu module.
2011-07-11Fixed bug in key commands; modules/textadept/keys.luamitchell
2011-07-11Allow buffer functions to omit buffer argument.mitchell
This is primarily for key and menu commands to avoid creating too many unnecessary tables.
2011-07-11Removed label mnemonics from localization keys.mitchell
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