aboutsummaryrefslogtreecommitdiff
path: root/core/file_io.lua
AgeCommit message (Collapse)Author
2013-03-25Added lfs.dir_foreach() for allowing Find in Files to have a filter.mitchell
Also moved snapopen module into core as io.snapopen().
2013-02-26Removed useless gui.dialog() options for fileopen/filesave.mitchell
2013-01-20Updated copyright date.mitchell
2012-12-04Do not error when opening a nonexistent file; core/file_io.luamitchell
Thanks to Pedro Andres Aranda Gutierrez.
2012-12-01Updated parameter LuaDoc.mitchell
2012-11-26Reverted r961.mitchell
2012-11-19Rewrote LuaDoc.mitchell
2012-11-19Changed Lua code style for tables.mitchell
2012-10-30Continued updating documentation formatting.mitchell
2012-10-29Updated documentation formatting.mitchell
Pathnames and filenames are italic and be more consistent with constant width text.
2012-10-08Use '@field' LuaDoc for events defined in modules.mitchell
2012-09-12Documentation overhaul.mitchell
Rewrote most of the manual and Lua API to complement each other. Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc.
2012-06-22Resize most filteredlists to fit the ncurses screen.mitchell
2012-03-27Translate all messages instead of relying on GTK to translate stock items.mitchell
2012-03-16Moved "Markdown:" comments into module LuaDoc comments.mitchell
2012-03-07Updated contact email address.mitchell
2012-03-07Documentation overhaul with Discount (Markdown implementation).mitchell
The standard LuaDoc template is no longer used. Instead, the new `scripts/markdowndoc.lua` has the template for LuaDoc and `scripts/update_doc` has the template for the Manual. Also added README, CHANGELOG, and THANKS files.
2012-02-10Update LuaDoc with new formatting.mitchell
2012-01-06Updated copyright information.mitchell
2012-01-05Code cleanup.mitchell
2012-01-01Code cleanup.mitchell
2011-12-31Changed 'locale.localize()' to global '_L' table.mitchell
2011-12-31Code cleanup.mitchell
2011-12-19Actually fixed bug introduced by r994, r996; core/file_io.luamitchell
2011-12-13Remove 'package.seeall' from LuaDoc comments.mitchell
2011-12-13Fixed bug introduced by r994; core/file_io.luamitchell
2011-12-12Remove 'module' and update LuaDoc comments appropriately.mitchell
2011-11-23Code cleanup.mitchell
2011-11-11Fixed erroneous charset conversion; core/file_io.luamitchell
2011-11-08Fixed bug with opening files in current dir from command line; core/file_io.luamitchell
Thanks to Travis Herrick.
2011-09-27Reformatted some LuaDoc.mitchell
2011-09-26Change directory on io.open_file() or buffer:save_as(); core/file_io.luamitchell
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-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-11Added io.open_recent_file().mitchell
2011-06-24Removed '_G' prefix from globals where necessary.mitchell
2011-06-23Use string constants for event names.mitchell
2011-01-21Code cleanup.mitchell
2010-12-28Updated copyright information.mitchell
2010-11-30Added 'file_after_save' event.mitchell
2010-11-30New manual.mitchell
2010-11-23Code cleanup.mitchell
Also modified the editing module's enclose() and select_enclosed() functions.
2010-11-15LuaDoc cleanup.mitchell
2010-10-28Display expected error messages in file IO.mitchell
2010-10-27Do not try to check for file updates if it cannot be read; core/file_io.luamitchell
2010-10-22Use '\' when opening files on WIN32; core/file_io.luamitchell
2010-10-15Changed locale implementation.mitchell
2010-10-14Code formatting changes.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.