From 8c86c21b2fcd2c62a1f70b6d553983991a066889 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Fri, 19 Sep 2008 23:51:01 -0400 Subject: Added preliminary support for Textadept on Windows. --- core/file_io.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core/file_io.lua') diff --git a/core/file_io.lua b/core/file_io.lua index 36117ebf..ecfb35e0 100644 --- a/core/file_io.lua +++ b/core/file_io.lua @@ -171,6 +171,7 @@ end -- @return true if the session file was opened and read; false otherwise. -- @usage textadept.io.load_session(filename) function load_session(filename, only_pm) + if WIN32 then return end -- TODO: local textadept = textadept local f = io.open(filename or os.getenv('HOME')..'/.ta_session') local current_view, splits = 1, { [0] = {} } @@ -229,6 +230,7 @@ end -- $HOME/.ta_session if not specified. -- @usage textadept.io.save_session(filename) function save_session(filename) + if WIN32 then return end -- TODO: local session = '' local buffer_line = "buffer: %d %d %d %s\n" -- anchor, cursor, line, filename local split_line = "%ssplit%d: %s %d\n" -- level, number, type, size -- cgit v1.2.3