aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/menu.lua
AgeCommit message (Collapse)Author
2012-03-14Use buffer:get_lexer(true) more often when it should be used.mitchell
2012-03-07Updated contact email address.mitchell
2012-02-10Update LuaDoc with new formatting.mitchell
2012-01-24Rename module shortcut variables.mitchell
2012-01-06Updated copyright information.mitchell
2012-01-05Renamed editing module's 'current_word' to 'select_word'.mitchell
Also added utils function for deleting the current word.
2012-01-05Rename '_m' to '_M'.mitchell
2012-01-01Code cleanup.mitchell
2011-12-31Changed 'locale.localize()' to global '_L' table.mitchell
2011-12-13Remove 'package.seeall' from LuaDoc comments.mitchell
2011-12-12Remove 'module' and update LuaDoc comments appropriately.mitchell
2011-12-12Updated to Lua 5.2.mitchell
2011-11-23Removed _m.textadept.editing.select_style().mitchell
2011-11-23Added theme utilities, modified light and dark themes, and removed scite theme.mitchell
Added gui.set_theme() and gui.select_theme() theming utilities. All new light and dark themes. Moved old classic themes to the wiki.
2011-09-28Update context menu on VIEW_AFTER_SWITCH; modules/textadept/menu.luamitchell
2011-09-27Reformatted some LuaDoc.mitchell
2011-09-27Added language-specific context menu support.mitchell
2011-09-25Refactored textadept.c and changed Lua interface a bit.mitchell
'_BUFFERS' and '_VIEWS' now also have buffer and view keys with index values; 'buffer.doc_pointer', 'view.doc_pointer', and 'gui.focused_doc_pointer' are no longer used; 'buffer:check_global()' replaces 'gui.check_focused_buffer()'; Added 'view.buffer' field; 'view:goto_buffer()' and 'gui.goto_view()' arguments changed to make more sense.
2011-09-21Rearranged Tools menu.mitchell
2011-08-22Changed some key commands.mitchell
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-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-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-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-06-24Removed '_G' prefix from globals where necessary.mitchell
2011-06-23Use string constants for event names.mitchell
2011-05-30Added menu accelerators for indentation size; modules/textadept/menu.luamitchell
2011-03-27Change menu caption for snippet's 'Insert' to 'Expand'.mitchell
2011-03-26Applied patches from Robert for minor fixes.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-23Rewrote _m.textadept.snippets module.mitchell
Snippet syntax has changed; see LuaDoc for details.
2011-03-17Performance and speed improvements.mitchell
2011-02-26Add Adeptsense menu options 'Complete Symbol' and 'Show Documentation'.mitchell
2011-01-25Fixed typos.mitchell
2011-01-21Code cleanup.mitchell
2011-01-19Can navigate between bookmarks with a filteredlist.mitchell
2011-01-19Modified Buffer menu options.mitchell
2010-12-28Updated copyright information.mitchell
2010-12-23Added filter-through module for shell commands.mitchell