Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-06-15 | Lots of small LuaDoc improvements (grammar mainly). | ||
2016-06-15 | Allow binary files to be encoded in something else. | ||
UTF-16 files (and other encodings with null bytes) are initially recognized as binary files (no encoding). Allow encodings to be set for such files after load. | |||
2016-06-15 | Changed some of 'lfs_ext' API. | ||
Renamed `lfs.FILTER` to `lfs.default_filter` and removed `exclude_FILTER` argument from `lfs.dir_foreach()`. | |||
2016-06-15 | Removed `exclude_FILTER` parameter from `io.quick_open()`. | ||
It was unnecessarily complicating things. Just construct the proper filter. | |||
2016-06-15 | Removed CVS project recognition and assume Subversion v1.8+. | ||
2016-06-15 | Removed explicit detection and use of extinct CR line endings. | ||
It's quite possible some of Textadept's functions didn't handle them properly anyway. | |||
2016-06-15 | Removed explicit BOM support. | ||
BOM use is legacy and discouraged. Scintilla and iconv appear to silently handle BOMs just fine. | |||
2016-06-15 | Renamed "snapopen" to "quick open" in APIs and menus. | ||
2016-04-05 | Only convert filenames from `_CHARSET` to UTF-8, not UTF-8-encoded buffer names. | ||
2016-04-02 | Code cleanup. | ||
Do not use `ipairs()` and use more consistent variable names among other things. | |||
2015-12-31 | Updated copyright date. | ||
2015-12-10 | Do not visit buffers that do not need saving in `io.save_all_files()`. | ||
This speeds up `io.save_all_files()`, particularly on remote filesystems. Thanks to Ivan Baidakou. | |||
2015-10-17 | Do not error when trying to snapopen a non-existent project; core/file_io.lua | ||
2015-04-13 | Added `symlink` filter option for ignoring symlinked files and directories. | ||
2015-03-16 | Code cleanup based on the output of luacheck, a Lua linter. | ||
2015-03-12 | Lua code cleanup. | ||
2015-03-10 | Made `io.boms` private, as there are few BOMs in existence; core/file_io.lua | ||
2015-03-09 | Moved `events.FILE_SAVED_AS` into `events.FILE_AFTER_SAVE` as extra argument. | ||
2015-01-20 | Check for modified files after resuming from suspend; core/file_io.lua | ||
2014-12-31 | Updated copyright year. | ||
2014-11-23 | File dialogs in the terminal should span the entire view; core/file_io.lua | ||
2014-11-12 | Code and documentation cleanup. | ||
2014-11-06 | Use the current working directory in fileselect dialogs. | ||
This should have been committed long ago. | |||
2014-06-30 | Condensed manual and API documentation into single files. | ||
2014-06-20 | Added `event.FOCUS` for when Textadept's window receives focus. | ||
2014-06-12 | Lua code cleanup. | ||
2014-06-04 | Pressing "Enter" in message buffer simulates double-click. | ||
In a "Find in Files" buffer, goes to the file on the current line. In a message buffer, jumps to the error or warning on the current line. | |||
2014-05-23 | Renamed `io.set_buffer_encoding()` to `buffer:set_encoding()`. | ||
2014-04-10 | Fixed bug introduced by r1710 relating to absolute paths. | ||
2014-04-06 | Added `lfs.abspath()` in order to always use absolute paths. | ||
Thanks to Pedro Andres Aranda Gutierrez. | |||
2014-03-28 | Added more documentation on project building. | ||
2014-03-27 | Added basic project support for snapopen and build scripts. | ||
Also fixed some curses errors introduced by the last commit. | |||
2014-03-26 | Include my new "lspawn" module by default for spawning processes. | ||
The `textadept.run` module now uses `spawn()` instead of `io.popen()`. This module replaces the dependency on winapi. Removed experimental `io.popen()` and `os.execute()` hooks. They may be re-implemented later using `spawn()`. | |||
2014-03-01 | Use `assert(...)` as a shortcut for `if not ... then error() end`. | ||
2014-02-10 | Improved compatibility of experimental winapi `os.execute()`; core/file_io.lua | ||
2014-01-12 | Updated copyright information. | ||
2014-01-03 | Handle './' and '../' sequences in filepaths; core/file_io.lua | ||
2013-12-15 | Added dummy `flush()` for processes in experimental winapi; core/file_io.lua | ||
2013-12-14 | Do not stop opening files if one of them is already open; core/file_io.lua | ||
2013-12-14 | Allow process writing in experimental winapi. | ||
Other modifications to make the return value for `io.popen()` more file-like. | |||
2013-12-12 | More LuaDoc updates. | ||
2013-11-20 | Fixed `os.execute()` return values in experimental winapi; core/file_io.lua | ||
2013-11-19 | Experimental winapi extension for preventing the flashing black box on Windows. | ||
Compile in a stripped version of Steve Donovan's winapi library and override `io.popen` and `os.execute`. | |||
2013-11-18 | LuaDoc updates. | ||
2013-11-11 | Updated documentation. | ||
2013-11-11 | Added `events.FILE_CHANGED`; core/file_io.lua | ||
Add an event handler at index 1 to override the default prompt to reload. | |||
2013-11-10 | Updated LuaDoc. | ||
2013-10-18 | The buffer API applies to all buffers now, not just the global one. | ||
Created a "dummy" Scintilla view for operating on non-global documents. Removed `buffer:check_global()` and replaced `buffer.dirty` with Scintilla's `buffer.modify`. | |||
2013-10-18 | More LuaDoc updates. | ||
2013-10-09 | More LuaDoc updates. | ||