Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-08 | Support SCI_PRIVATELEXERCALL with SCI_LOADLEXERLIBRARY. | ||
This change should have been committed with r2697 (changeset 40a1cf1c4fd0). | |||
2020-02-24 | Added `_SCINTILLA.events` and use it for SCNotifications. | ||
2020-02-20 | Enable batch mode for gpg signing. | ||
Nightly builds have been failing with a "cannot open /dev/tty" error. If this does not work, try "--no-tty" or a combination of the two. | |||
2020-02-17 | Removed Makefile rule to create a ctags tags file. | ||
2020-02-07 | Support more Alt and Shift+Alt keys in Win32 curses. | ||
2020-01-16 | Fixed some Windows terminal version issues and updated to PDCurses 3.9. | ||
`io.popen()` and `os.execute()` change the console mode such that mouse clicks are no longer detected. Make sure it's reset. Also prevent `os.execute()` output from overwriting the window. | |||
2020-01-09 | Updated to scintilla hg tip to test the latest changes in nightly builds. | ||
2020-01-07 | Updated scintilla.patch based on latest Scintilla LongTerm3 hg. | ||
2019-12-31 | Updated copyright year. | ||
2019-12-31 | Updated to Scintilla 3.11.2. | ||
2019-12-31 | Updated for 10.8. | ||
2019-11-13 | Make new arguments to `events.TAB_CLICKED` backwards-compatible. | ||
2019-11-07 | Split Lua and Textadept autocompletion and documentation files. | ||
Textadept autocompletion and documentation is now only performed on Textadept files. Modified the LuaDoc doclet to only process "lua.luadoc" on its own, and updated the Makefile rule accordingly. | |||
2019-11-07 | Simplified some Makefile rules. | ||
2019-11-07 | Changed `events.TAB_CLICKED` to emit button clicked as well as modifier keys. | ||
This allows users to close buffers on middle-click for example. | |||
2019-10-31 | Updated for 10.7. | ||
2019-10-26 | Updated to Scintilla 3.11.1. | ||
2019-10-06 | Ensure `events.BUFFER_BEFORE_SWITCH` is emitted properly during `buffer.new()`. | ||
It appears that calling SCI_CREATEDOCUMENT alters view state immediately such that at least fold state is no longer available to store. | |||
2019-09-19 | Do not consider theme files as countable lines of code. | ||
2019-09-01 | Removed unnecessary Scintilla patch. | ||
Block caret placement is now configurable. | |||
2019-08-30 | Updated for 10.6. | ||
2019-08-30 | Updated to Scintilla 3.11.0. | ||
2019-08-05 | Added support for ksh and mksh shells. | ||
Thanks to Ypnose. | |||
2019-07-30 | Fail more gracefully when attempting to create buffers on init. | ||
2019-07-11 | Updated to latest Scintilla LongTerm3 revision. | ||
Scintilla.iface has changed, as has some of its underlying platform API. Testing sooner is better than later. | |||
2019-06-30 | Updated for 10.5. | ||
2019-06-30 | Updated to Scintilla 3.10.6. | ||
2019-05-03 | Updated default main window size and some default dialog sizes. | ||
1080p (full HD) screens seem to be the norm now. | |||
2019-04-27 | Updated Scintilla revision to fix compile error on old Mac OSX SDK. | ||
2019-04-26 | Updated for 10.4. | ||
2019-04-18 | Do not emit an `events.SAVE_POINT_LEFT` event for unfocused views. | ||
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-17 | Updated to Scintilla 3.10.4. | ||
2019-03-14 | Updated to lfs 1.7.0 and lpeg 1.0.2. | ||
Also updated LuaDoc. | |||
2019-03-09 | Updated to Scintilla 3.10.3. | ||
2019-02-28 | Removed patch fixed in Scintilla 3.10.2. | ||
2019-02-28 | Updated for 10.3. | ||
2019-02-28 | Updated to Scintilla 3.10.2. | ||
2019-02-16 | Updated copyright year. | ||
2019-02-13 | Use WGET variable in Makefile for fetching dependencies. | ||
This allows other tools like curl to be used. | |||
2018-12-29 | Updated for 10.3 beta. | ||
2018-12-17 | Fixed handling of escaped double-quotes in `os.spawn()` on curses. | ||
2018-11-27 | Fixed Alt+Gr key handling in the Windows terminal version. | ||
2018-11-25 | Hijack `buffer:load_lexer_library()` to allow manual setting of input method. | ||
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-10 | Use versioned win32curses.zip. | ||
This allows previous versions of Textadept to compile against PDCurses 3.4 and newer versions to compile against 3.6. | |||
2018-11-10 | Fixed compiling issues with updated PDCurses 3.6. | ||
2018-11-10 | Updated to PDCurses 3.6. | ||
2018-11-04 | Temporarily patched Scintilla to send SC_UPDATE_SELECTION for multiple select. | ||
This only affects `buffer:multiple_select_add_[next|each]()`. Patch submitted upstream. | |||
2018-10-31 | Updated for 10.2. | ||
2018-10-31 | Updated to Scintilla 3.10.1. | ||
2018-10-31 | Fix potential crashes in `string.iconv()` with tiny strings. | ||