aboutsummaryrefslogtreecommitdiff
path: root/core/file_io.lua
AgeCommit message (Collapse)Author
2009-07-08Better session management.mitchell
Can load and save from the menu now as well.
2009-07-07Use ~/.textadept/ for user settings, sessions, themes, lexers, etc.mitchell
2009-07-07Save PM cursor over sessions; core/file_io.luamitchell
2009-06-20Try list of encodings to load if none was detected rather than just UTF-8.mitchell
Any non-detected encoding that was not UTF-8 would cause an error on load since it was treated as UTF-8.
2009-06-19Use before_switch and after_switch events for buffers and views.mitchell
Moved C code for saving/restoring state when switching buffers to Lua. Also added saving of folding state.
2009-03-03Minor core code cleanup.mitchell
2009-03-01Ignore null byte for specific Scintilla messages; use buffer:get_text() again.mitchell
2009-03-01Added 'file_before_save' signal.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-28Use UTF-8 internally and respect platform filename encoding.mitchell
Added 'textadept.iconv' function to interface with GLib's g_convert() and set global _CHARSET to be the platform's filename encoding/code page.
2009-02-23Attempt to preserve existing EOL mode for opened files; core/file_io.luamitchell
2009-02-23The recent_files list behaves better; core/file_io.luamitchell
2009-02-22Reset buffer.modification_time inside buffer:reload(); core/file_io.luamitchell
2009-02-16Save "_type" buffers in session file; core/file_io.luamitchell
2009-02-15Cleaned up some Lua code.mitchell
2009-02-14Read and write in binary mode for everything.mitchell
2009-02-14Prompt for file reload if it was modified outside of Textadept.mitchell
2009-02-12If filename exists, but cannot be read, do not open it; core/file_io.luamitchell
2009-02-10Moved the textadept.locale table into the globals table.mitchell
2009-02-10Use a _type field for special _print() buffers' titles instead of 'Untitled'.mitchell
2009-01-26Don't goto_buffer that doesn't exist when loading session; core/file_io.luamitchell
2009-01-26Should be reading and writing in binary mode; core/file_io.luamitchell
2009-01-25Replaced str:match with str:find where applicable for speed improvements.mitchell
2009-01-25Fixed bugs with opening binary files; core/file_io.luamitchell
2009-01-25textadept.io.reload() scrolls the view back to how it was; core/file_io.luamitchell
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-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-30Fixes to recognize Windows path separators.mitchell
2008-12-23Use table.concat instead of multiple string concats for performance improvement.mitchell
2008-12-16textadept.io.close_all() returns true or false now; core/file_io.luamitchell
2008-09-24Linux comes first; core/file_io.luamitchell
2008-09-24Added textadept.size property.mitchell
2008-09-21Adapted lua-dialog file selection to work in Windows; core/file_io.luamitchell
2008-09-20Added session support for Windows; core/file_io.luamitchell
2008-09-19Added preliminary support for Textadept on Windows.mitchell
2008-06-18Always load Project Manager settings from session file.mitchell
2008-03-04Fixed bugs with tonumber(cocoa_dialog(...)) in various files.mitchell
Instead of the extra overhead when calling tonumber(), add the --no-newline option and do a direct string comparison.
2008-03-03Updated copyright notice to include the year 2008.mitchell
2008-02-29Fixed empty buffer.filename bug in save_as(); core/file_io.luamitchell
2008-02-23Eliminated Zenity dependency; replaced with my CocoaDialog clone (lua_dialog).mitchell
2008-02-10Instead of io.popen():read(), a file descriptor is kept and close()'d afterward.mitchell
2007-11-16Prevent data loss by opening file after 'prepare'ing for save; core/file_io.luamitchell
2007-09-27Added buffer:reload() function.mitchell
2007-08-15Recent files are now tracked and a user list can be shown to open them.mitchell
2007-08-15Renamed handlers module to events, updated everything to reflect changes.mitchell
2007-08-09Renamed modules global to _m.mitchell
2007-08-09Added new LuaDoc, updated existing LuaDoc to be more consistent.mitchell
2007-08-06Initial import of core Lua files.mitchell