aboutsummaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2017-03-15Updated LuaDoc; core/init.luamitchell
2017-02-28Updated for 9.3.mitchell
2017-02-22Fixed attribution; core/locales/locale.pl.confmitchell
2017-02-22Updated Polish translation; core/locales/locale.pl.confmitchell
Thanks to Piotr Orzechowski.
2017-01-11Fixed localization regression introduced in r2288; core/locale.confmitchell
2017-01-02Improved LuaJIT compatibility; core/init.luamitchell
Some third-party extensions make use of Lua 5.3's `table.insert()`.
2017-01-01Use more descriptive header in command selection dialog.mitchell
2016-12-31Updated copyright information.mitchell
2016-12-21Updated for 9.2.mitchell
2016-12-08Updated for 9.1.mitchell
2016-12-05Updated to Scintilla 3.7.1.mitchell
2016-11-04Removed MacRoman encoding option, as OSX uses UTF-8 by default.mitchell
2016-10-19Allow detection of encodings with NUL bytes like UTF-16; core/file_io.luamitchell
2016-10-19Updated to Scintilla 3.7.0.mitchell
2016-09-29Discard Alt/option modifier for composed ASCII symbols; core/keys.luamitchell
For example this should report 'm{' as just '{' on a Spanish OSX key layout.
2016-09-28Updated for 9.0.mitchell
2016-09-15Updated to Scintilla 3.6.7 and Scintillua 3.6.7-1.mitchell
2016-08-29Small LuaDoc updates.mitchell
2016-08-29Updated for 9.0 beta.mitchell
2016-08-29Small LuaDoc update; core/.buffer.luadocmitchell
2016-08-11Fixed caps lock key handling.mitchell
2016-07-24Added `events.TAB_CLICKED` event.mitchell
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-14Fixed bug in keeping track of event indices; core/events.luamitchell
As a result, `events.disconnect()` may disconnect the wrong event handler. Thanks to David Karell.
2016-07-11Updated for 9.0 alpha 2.mitchell
2016-07-06Added context to localization messages for easier translation.mitchell
2016-07-04Added timeout prompt for "Find in Files".mitchell
It is now possible to cancel a "Find in Files" search part-way through.
2016-07-04Fixed inability to effectively halt `lfs.dir_foreach()` loops; core/lfs_ext.luamitchell
2016-07-04Replaced Lua pattern matching with Regex via Scintilla and TRE.mitchell
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-04Check bounds for `buffer:text_range()`; core/init.luamitchell
2016-06-30Small manual and LuaDoc updates.mitchell
2016-06-30Updated for 9.0 alpha.mitchell
2016-06-27Small code cleanup and documentation updates.mitchell
2016-06-25Small code and documentation cleanup.mitchell
2016-06-19Updated translations.mitchell
2016-06-16Changed arguments to `ui.goto_view()` and `view:goto_buffer()`.mitchell
They can accept either objects or relative numbers now. They do not accept absolute indices anymore.
2016-06-15Lots of small LuaDoc improvements (grammar mainly).mitchell
2016-06-15Refactored LuaDoc for `_M`; core/._M.luadocmitchell
2016-06-15Allow binary files to be encoded in something else.mitchell
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-15Renamed `ui.SILENT_PRINT` to `ui.silent_print`.mitchell
2016-06-15Be more liberal about comments in locale files and use '#' by default.mitchell
2016-06-15Changed some of 'lfs_ext' API.mitchell
Renamed `lfs.FILTER` to `lfs.default_filter` and removed `exclude_FILTER` argument from `lfs.dir_foreach()`.
2016-06-15Removed handling of tables as key/menu commands; use functions only.mitchell
2016-06-15Removed `exclude_FILTER` parameter from `io.quick_open()`.mitchell
It was unnecessarily complicating things. Just construct the proper filter.
2016-06-15Removed CVS project recognition and assume Subversion v1.8+.mitchell
2016-06-15Removed explicit detection and use of extinct CR line endings.mitchell
It's quite possible some of Textadept's functions didn't handle them properly anyway.
2016-06-15Removed explicit BOM support.mitchell
BOM use is legacy and discouraged. Scintilla and iconv appear to silently handle BOMs just fine.
2016-06-15Renamed "snapopen" to "quick open" in APIs and menus.mitchell
2016-04-29Updated for 8.7.mitchell
2016-04-28Updated some translations.mitchell
2016-04-16Added menu item and dialog for setting run/compile command arguments.mitchell