Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-29 | Discard Alt/option modifier for composed ASCII symbols; core/keys.lua | ||
For example this should report 'm{' as just '{' on a Spanish OSX key layout. | |||
2016-09-28 | Updated for 9.0. | ||
2016-09-15 | Updated to Scintilla 3.6.7 and Scintillua 3.6.7-1. | ||
2016-08-29 | Small LuaDoc updates. | ||
2016-08-29 | Updated for 9.0 beta. | ||
2016-08-29 | Small LuaDoc update; core/.buffer.luadoc | ||
2016-08-11 | Fixed caps lock key handling. | ||
2016-07-24 | Added `events.TAB_CLICKED` event. | ||
This allows for the user to override the default switch behavior (e.g. switch to an existing split view that already has the target buffer open). Thanks to Gabriel Dubatti. | |||
2016-07-14 | Fixed bug in keeping track of event indices; core/events.lua | ||
As a result, `events.disconnect()` may disconnect the wrong event handler. Thanks to David Karell. | |||
2016-07-11 | Updated for 9.0 alpha 2. | ||
2016-07-06 | Added context to localization messages for easier translation. | ||
2016-07-04 | Added timeout prompt for "Find in Files". | ||
It is now possible to cancel a "Find in Files" search part-way through. | |||
2016-07-04 | Fixed inability to effectively halt `lfs.dir_foreach()` loops; core/lfs_ext.lua | ||
2016-07-04 | Replaced Lua pattern matching with Regex via Scintilla and TRE. | ||
As a result, changed `ui.find.lua` to `ui.find.regex` Also removed luautf8 dependency since it is no longer needed. Regex replacements cannot contain embedded Lua code. Jumping to "find in files" results selects those results instead of just jumping to their respective lines. | |||
2016-07-04 | Check bounds for `buffer:text_range()`; core/init.lua | ||
2016-06-30 | Small manual and LuaDoc updates. | ||
2016-06-30 | Updated for 9.0 alpha. | ||
2016-06-27 | Small code cleanup and documentation updates. | ||
2016-06-25 | Small code and documentation cleanup. | ||
2016-06-19 | Updated translations. | ||
2016-06-16 | Changed arguments to `ui.goto_view()` and `view:goto_buffer()`. | ||
They can accept either objects or relative numbers now. They do not accept absolute indices anymore. | |||
2016-06-15 | Lots of small LuaDoc improvements (grammar mainly). | ||
2016-06-15 | Refactored LuaDoc for `_M`; core/._M.luadoc | ||
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 | Renamed `ui.SILENT_PRINT` to `ui.silent_print`. | ||
2016-06-15 | Be more liberal about comments in locale files and use '#' by default. | ||
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 handling of tables as key/menu commands; use functions only. | ||
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-29 | Updated for 8.7. | ||
2016-04-28 | Updated some translations. | ||
2016-04-16 | Added menu item and dialog for setting run/compile command arguments. | ||
2016-04-16 | Localize "Lua reset" message. | ||
2016-04-16 | Fixed spelling error in English-localized messages. | ||
2016-04-16 | Find in files should not print the contents of binary files. | ||
Use placeholder text instead. This is common in Unix tools. | |||
2016-04-16 | Small code cleanup. | ||
2016-04-16 | `events.CHAR_ADDED` emits a character code, not a byte. | ||
2016-04-11 | Save and restore horizontal scroll position when switching buffers; core/ui.lua | ||
2016-04-07 | Only show snippet trigger and text in selection dialog. | ||
2016-04-05 | Do not run some `events.UPDATE_UI` handlers when scrolling. | ||
2016-04-05 | Only convert filenames from `_CHARSET` to UTF-8, not UTF-8-encoded buffer names. | ||
2016-04-05 | File dialogs only return UTF-8-encoded filenames on Win32 GTK; core/ui.lua | ||
2016-04-05 | Import Lua UTF-8 pattern functions directly into `utf8` library from C. | ||
2016-04-02 | Code cleanup. | ||
Do not use `ipairs()` and use more consistent variable names among other things. | |||
2016-03-29 | No need to pack and unpack `...`; core/events.lua | ||
2016-03-26 | Support UTF-8 Lua pattern matching. | ||
Makes use of an external luautf8 library, but only a subset of it. |