aboutsummaryrefslogtreecommitdiff
path: root/core/ext/menu.lua
AgeCommit message (Collapse)Author
2010-06-11Moved core extension modules into textadept module.mitchell
2010-06-11Removed _G.textadept.mitchell
Created new _SCINTILLA core module. Renamed textadept.constants to _SCINTILLA.constants Renamed textadept.buffer_functions to _SCINTILLA.functions Renamed textadept.buffer_properties to _SCINTILLA.properties Created new gui core module. Renamed textadept._print() to gui._print(). Renamed textadept.check_focused_buffer() to gui.check_focused_buffer(). Renamed textadept.clipboard_text to gui.clipboard_text. Renamed textadept.context_menu to gui.context_menu Renamed textadept.command_entry to gui.command_entry. Renamed textadept.dialog to gui.dialog. Renamed textadept.docstatusbar_text to gui.docstatusbar_text. Renamed textadept.find to gui.find. Renamed textadept.focused_doc_pointer to gui.focused_doc_pointer. Renamed textadept.get_split_table() to gui.get_split_table(). Renamed textadept.gtkmenu() to gui.gtkmenu(). Renamed textadept.goto_view() to gui.goto_view(). Renamed textadept.menubar to gui.menubar. Renamed textadept.print() to gui.print(). Renamed textadept.size to gui.size. Renamed textadept.statusbar_text to gui.statusbar_text. Renamed textadept.switch_buffer() to gui.switch_buffer(). Renamed textadept.title to gui.title. Renamed textadept.buffers to _G._BUFFERS. Renamed textadept.new_buffer() to _G.new_buffer(). Renamed textadept.quit() to _G.quit(). Renamed textadept.reset() to _G.reset(). Renamed textadept.views to _G._VIEWS. Renamed textadept.user_dofile() to _G.user_dofile(). Renamed textadept.iconv to string.iconv. Renamed textadept.session_file to _SESSIONFILE. Renamed appropriate C functions.
2010-06-11Renamed textadept.events to events, renamed 'handle' and 'add_handler'.mitchell
2010-06-10Moved textadept.mime_types into the textadept module.mitchell
2010-06-10Renamed _m.textadept.lsnippets to _m.textadept.snippets.mitchell
2010-06-10Moved textadept.io into Lua's io table.mitchell
Renamed textadept.io.open to textadept.io.open_file to prevent conflicts.
2010-04-21Moved 'Search' menu into 'Tools' to resolve Alt+S key command conflict.mitchell
2010-04-05Fixed help hanging issue on Win32; core/ext/menu.luamitchell
2010-04-05Removed kill-ring.mitchell
2010-03-30Added About dialog.mitchell
2010-03-30Do not block until help browser is closed; core/ext/menu.luamitchell
2010-03-23Open help browser-agnostically for all platforms.mitchell
2010-03-20Can change lexer from a filtered list dialog.mitchell
2010-03-10Check if ~/.textadept/lexers/ exists first; core/ext/menu.luamitchell
2010-03-08Add lexers in ~/.textadept/lexers/ to menu; core/ext/menu.luamitchell
Thanks to Rob Gieseke for the idea.
2010-03-10Added textadept.buffer_switch() to replace side pane's buffer browser.mitchell
2010-03-02Removed mlines module since Scintilla's new multiple selections supersede it.mitchell
2010-01-07Updated copyright to 2010.mitchell
2009-07-28Updated manual for offline use, sidebar links.mitchell
2009-07-18Fix bugs related to core/events.lua changes.mitchell
2009-07-13Added incremental find.mitchell
2009-07-12Moved session support from core/file_io.lua to a Textadept module.mitchell
2009-07-08Better session management.mitchell
Can load and save from the menu now as well.
2009-07-12Moved session support from core/file_io.lua to a Textadept module.mitchell
2009-07-11Fixed bug with lexer restoration.mitchell
2009-07-08Better session management.mitchell
Can load and save from the menu now as well.
2009-07-08Added 'Help' menu.mitchell
2009-07-07Compile and run commands can be user-redefinable through accessible tables.mitchell
2009-06-01Alphabetize lexers when dynamically loading them from disk; core/ext/menu.luamitchell
2009-04-02Removed macro support; just use Lua for scripting.mitchell
2009-03-01Added support for multiple character encodings through g_convert().mitchell
Can open, save, and convert between different character encodings now.
2009-02-22Added key commands and menu items to navigate 'Find in Files' list.mitchell
2009-02-17Removed hard-coded lexers from core/ext/menu.lua; generate them dynamically.mitchell
2009-02-15Removed buggy 'Select in Structure' from _m.textadept.editing.mitchell
2009-02-14update_ui() when selecting a lexer from the menu just in case; core/ext/menu.luamitchell
2009-02-14Added textadept.context_menu field for a custom popup context menu.mitchell
2009-02-10Moved the textadept.locale table into the globals table.mitchell
2009-02-08Fixed Paste menu issue with Mac OSX; core/ext/menu.luamitchell
2009-02-01Added menu options for changing line endings in buffers.mitchell
2009-01-27Use a combo entry to either type in or select a PM browser to use.mitchell
2009-01-26Menu label text is irrelevant for menu actions due to l10n; focus on menu_id.mitchell
2009-01-25Removed some rarely-used functions from modules/textadept/editing.lua et. al.mitchell
Including: * autocomplete_word_from_dict * move_line (up and down) * ruby_exec * lua_exec * reformat_paragraph
2009-01-14Added key commands, menu items, and locale strings for running/compiling files.mitchell
2009-01-10Various improvements to speed and readability of Lua code.mitchell
Added 'local textadept = _G.textadept' to all Lua modules, themes, etc. Added more locals to core/ext/keys.lua for speed improvement. Reformatted some Lua modules to the earlier standard committed.
2009-01-08Reformatted all C and Lua code to a single standard for each language.mitchell
2009-01-05Add bookmarks to the textadept module and menu.mitchell
2009-01-03Added localization support.mitchell
All Textadept messages are in core/locale.lua which provides the new 'textadept.locale' module.
2009-01-01Updated copyright dates for 2009.mitchell
2008-12-30Added 'Show PM Project' to 'Project Manager' menu; core/ext/menu.luamitchell
2008-12-22Fixed bugs in macros and macro browser.mitchell