aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2019-08-05Added support for ksh and mksh shells.mitchell
Thanks to Ypnose.
2019-07-30Fail more gracefully when attempting to create buffers on init.mitchell
2019-07-11Updated to latest Scintilla LongTerm3 revision.mitchell
Scintilla.iface has changed, as has some of its underlying platform API. Testing sooner is better than later.
2019-06-30Updated for 10.5.mitchell
2019-06-30Updated to Scintilla 3.10.6.mitchell
2019-05-03Updated default main window size and some default dialog sizes.mitchell
1080p (full HD) screens seem to be the norm now.
2019-04-27Updated Scintilla revision to fix compile error on old Mac OSX SDK.mitchell
2019-04-26Updated for 10.4.mitchell
2019-04-18Do not emit an `events.SAVE_POINT_LEFT` event for unfocused views.mitchell
Forcing a switch to and from the source buffer's view triggers "switch" view events, which can cause trouble. There's no need to know this in real-time and `buffer.modified` can be checked in an `events.BUFFER_AFTER_SWITCH` or `events.VIEW_AFTER_SWITCH` handler.
2019-04-17Updated to Scintilla 3.10.4.mitchell
2019-03-14Updated to lfs 1.7.0 and lpeg 1.0.2.mitchell
Also updated LuaDoc.
2019-03-09Updated to Scintilla 3.10.3.mitchell
2019-02-28Removed patch fixed in Scintilla 3.10.2.mitchell
2019-02-28Updated for 10.3.mitchell
2019-02-28Updated to Scintilla 3.10.2.mitchell
2019-02-16Updated copyright year.mitchell
2019-02-13Use WGET variable in Makefile for fetching dependencies.mitchell
This allows other tools like curl to be used.
2018-12-29Updated for 10.3 beta.mitchell
2018-12-17Fixed handling of escaped double-quotes in `os.spawn()` on curses.mitchell
2018-11-27Fixed Alt+Gr key handling in the Windows terminal version.mitchell
2018-11-25Hijack `buffer:load_lexer_library()` to allow manual setting of input method.mitchell
Apparently Mac OSX 10.14 is causing problems with GTK-OSX's normal input method switching. The input methods available are in Textadept.app's Contents/Resources/etc/gtk- 2.0/gtk.immodules file. Use the first string identifier.
2018-11-10Use versioned win32curses.zip.mitchell
This allows previous versions of Textadept to compile against PDCurses 3.4 and newer versions to compile against 3.6.
2018-11-10Fixed compiling issues with updated PDCurses 3.6.mitchell
2018-11-10Updated to PDCurses 3.6.mitchell
2018-11-04Temporarily patched Scintilla to send SC_UPDATE_SELECTION for multiple select.mitchell
This only affects `buffer:multiple_select_add_[next|each]()`. Patch submitted upstream.
2018-10-31Updated for 10.2.mitchell
2018-10-31Updated to Scintilla 3.10.1.mitchell
2018-10-31Fix potential crashes in `string.iconv()` with tiny strings.mitchell
2018-10-22Fixed Makefile rule for rebuilding lua src directory.mitchell
Some lualibs files are read-only.
2018-10-17Return spawned process' exit code in `spawn_proc:wait()`.mitchell
2018-10-17Fixed bug introduced in r2520.mitchell
2018-10-16Attempt to fix key handling on international keyboards.mitchell
Updating to GTK 2.24.32 on Windows seems to have removed the need to translate keys. It is possible that some international layouts do not need it, but some do.
2018-10-16Restore Mac-specific spawned process file descriptor monitoring.mitchell
Despite the fact GLib no longer aborts when polling file descriptors, it still appears to mostly block while polling, rendering Textadept mostly useless.
2018-10-15Tweaked `os.spawn()` to allow omission of both cwd and env parameters.mitchell
2018-10-14Experimentally move external lspawn module into Lua os module as a patch.mitchell
2018-10-12Updated to latest lspawn for proper return values for empty lines and EOF.mitchell
This was not being handled correctly in the terminal version.
2018-10-01Updated to latest lspawn for proper '\r\n' line handling during line reads.mitchell
This is for the curses version.
2018-09-28Updated for 10.1.mitchell
2018-09-13Updated to latest lspawn for proper '\r\n' line handling during line reads.mitchell
2018-09-10Added ability to save/restore persistent data during reset.mitchell
2018-09-10Updated to GTK 2.24.32 on Windows.mitchell
2018-07-26Updated for 10.0.mitchell
2018-07-15Updated to Lua 5.3.5.mitchell
2018-06-30Updated to Scintilla 3.10.0.mitchell
2018-06-12Fixed child lexers that embed themselves into parents and fixed proxy lexers.mitchell
Also removed temporary Scintilla patch that has been applied.
2018-05-31Updated for Textadept 10.0 beta 2.mitchell
2018-05-27Refer to Lua's 'package.loaded' table name by constant, not literal.mitchell
2018-05-22Insert version numbers into manual and API documentation.mitchell
This should result in less confusion between stable and unstable release documentation, depending on which version is on the website.
2018-05-11Fixed crash on Mac OSX with regex searches.mitchell
2018-05-07Prefix cdk build objects in order to prevent clashes on icase filesystems.mitchell