Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-16 | Mention that buffer's API is derived from Scintilla and provide docs link. | ||
2017-07-02 | Added ability for buffer list to show buffers by z-order. | ||
2017-06-30 | Updated for 9.5 beta. | ||
2017-06-23 | Small code cleanup. | ||
2017-06-21 | Correctly handle multiple '!' patterns in file filters. | ||
This allows for specific file and folder includes. | |||
2017-06-20 | Added support and documentation for new ui dialogs. | ||
This requires gtdialog r108 (changeset 8465c20432e1). | |||
2017-06-20 | Added documentation for new color selection dialog. | ||
This requires gtdialog r106 (changeset 4fbcad4d2031). | |||
2017-06-17 | Effectively updated to Scintilla 3.7.5 with select backports to 3.7.3. | ||
2017-05-26 | Fixed bug that deleted characters outside of mangled snippets. | ||
2017-04-30 | Updated for 9.4. | ||
2017-04-07 | Effectively updated to Scintilla 3.7.4 with select backports to 3.7.3. | ||
Scintilla 3.7.4 requires a C++11 compiler, which I do not have. | |||
2017-03-15 | Updated LuaDoc; core/init.lua | ||
2017-02-28 | Updated for 9.3. | ||
2017-02-22 | Fixed attribution; core/locales/locale.pl.conf | ||
2017-02-22 | Updated Polish translation; core/locales/locale.pl.conf | ||
Thanks to Piotr Orzechowski. | |||
2017-01-11 | Fixed localization regression introduced in r2288; core/locale.conf | ||
2017-01-02 | Improved LuaJIT compatibility; core/init.lua | ||
Some third-party extensions make use of Lua 5.3's `table.insert()`. | |||
2017-01-01 | Use more descriptive header in command selection dialog. | ||
2016-12-31 | Updated copyright information. | ||
2016-12-21 | Updated for 9.2. | ||
2016-12-08 | Updated for 9.1. | ||
2016-12-05 | Updated to Scintilla 3.7.1. | ||
2016-11-04 | Removed MacRoman encoding option, as OSX uses UTF-8 by default. | ||
2016-10-19 | Allow detection of encodings with NUL bytes like UTF-16; core/file_io.lua | ||
2016-10-19 | Updated to Scintilla 3.7.0. | ||
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`. | ||