aboutsummaryrefslogtreecommitdiff
path: root/core/gui.lua
AgeCommit message (Collapse)Author
2011-12-31Changed 'locale.localize()' to global '_L' table.mitchell
2011-12-31Code cleanup.mitchell
2011-12-20Wrap LuaDoc for C tables and functions in long comments.mitchell
2011-12-14No need for 'lexer.lpeg.script' property anymore; core/gui.luamitchell
2011-12-13Remove 'package.seeall' from LuaDoc comments.mitchell
2011-12-12Remove 'module' and update LuaDoc comments appropriately.mitchell
2011-11-28Write theme changes to ~/.textadept/theme; core/gui.luamitchell
2011-11-23Code cleanup.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-28Added gui.goto_file() for the 'find' and 'run' modules.mitchell
2011-09-27Reformatted some LuaDoc.mitchell
2011-09-26Lua code cleanup.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-20No need to set buffer.eol_mode for OSX since Scintilla 2.29; core/gui.luamitchell
2011-09-08Only fold when clicking on fold margin, not any sensitive one; core/gui.luamitchell
2011-08-25Set buffer.eol_mode properly for new buffers on Mac OSX; core/gui.luamitchell
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-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-03-29Handle nil args in gui.print() and set caret after printing.mitchell
2011-03-25Snapopen allows multiple files to be selected now.mitchell
2011-01-21Code cleanup.mitchell
2011-01-19Added gui.filteredlist() shortcut function for gui.dialog('filteredlist', ...).mitchell
2011-01-13More informative check_focused_buffer() error message.mitchell
2011-01-02Fixed bug with update_ui in buffer_new and view_new events; core/gui.luamitchell
2010-12-29No more pasting issue in Mac OSX; core/gui.luamitchell
2010-12-29Do not call 'buffer_new' when splitting the view.mitchell
2010-12-28Updated copyright information.mitchell
2010-12-26Moved gui events from core/events.lua to core/gui.lua.mitchell
2010-11-23Code cleanup.mitchell
Also modified the editing module's enclose() and select_enclosed() functions.
2010-10-15Changed locale implementation.mitchell
2010-10-14Code formatting changes.mitchell
2010-10-13Fix switch buffers dialog bug when cancelling; core/gui.luamitchell
2010-10-11gui.dialog() can take tables of strings as arguments.mitchell
2010-06-16Code and documentation cleanup.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.