aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
...
* Updated copyright information.Gravatar mitchell2021-01-29
|
* Updated to Scintillua 4.4.5-2.Gravatar mitchell2021-01-29
|
* Updated for 11.0.Gravatar mitchell2020-11-30
|
* Added `events.UNFOCUS` for when Textadept loses focus.Gravatar mitchell2020-11-16
| | | | Do not emit this event when a dialog is active.
* Code cleanup.Gravatar mitchell2020-11-16
|
* Keep focus on find & replace pane as necessary when refocusing window.Gravatar mitchell2020-11-16
|
* Updated to the latest revision of Scinterm.Gravatar mitchell2020-11-01
|
* Updated for 11.0 beta 2.Gravatar mitchell2020-10-30
|
* Updated to LuaFileSystem 1.8.0.Gravatar mitchell2020-10-25
| | | | This will be needed for properly detecting symlink targets in `lfs.walk()`.
* Ensure command entry is defocused properly in the terminal version.Gravatar mitchell2020-10-20
| | | | Otherwise, autocompletion lists may not be canceled.
* Moved `ui.command_entry.active` into C.Gravatar mitchell2020-10-13
| | | | It's more reliable and is similar to `ui.find.active`.
* Updated to CDK 5.0-20200923.Gravatar mitchell2020-10-12
|
* Broke up textadept-modules into individual module repositories.Gravatar mitchell2020-10-08
| | | | Zip them all into a single archive during the build process.
* `make clean-deps` should also remove Scintillua, Scinterm, and gtDialog zips.Gravatar mitchell2020-10-06
| | | | | Otherwise, `make deps` and `make deps NIGHTLY=1` may not download the right ones.
* Collect garbage on reset.Gravatar mitchell2020-10-04
| | | | | External modules that have finalizers (__gc metamethod) need to be run now, or else segfaults can occur when running the gc later with stale data.
* Added Scintilla patch for avoiding crashes with untrimmed XPM images.Gravatar mitchell2020-10-02
| | | | Once the patch submitted upstream is accepted, this patch will not be needed.
* Added Scintilla patch needed for drawing strikeout tabs in the terminal version.Gravatar mitchell2020-10-02
| | | | Once the patch submitted upstream is accepted, this patch will not be needed.
* Moved 'docs/markdowndoc.lua' into 'scripts/markdowndoc.lua'.Gravatar mitchell2020-10-01
|
* Updated for 11.0 beta.Gravatar mitchell2020-09-30
|
* Updated copyright information.Gravatar mitchell2020-09-29
|
* Updated to latest gtdialog revision for improvements filtering huge lists.Gravatar mitchell2020-09-29
|
* Ensure version is included in Manual and API Documentation headers.Gravatar mitchell2020-09-25
|
* Added code counting script and inline plots.Gravatar mitchell2020-09-20
| | | | Removed redundant stats link.
* Updated to Scintilla 4.4.5 and Scintillua 4.4.5-1.Gravatar mitchell2020-09-19
|
* Added `events.COMMAND_TEXT_CHANGED`.Gravatar mitchell2020-09-19
| | | | This is analagous to `events.FIND_TEXT_CHANGED`.
* Added `ui.update()` for unit tests.Gravatar mitchell2020-09-19
|
* No need for "-e" in simple sed invocations.Gravatar mitchell2020-09-16
|
* More link updates.Gravatar mitchell2020-09-14
|
* More small documentation updates.Gravatar mitchell2020-09-14
|
* Lots of documentation updates.Gravatar mitchell2020-09-13
| | | | | | | | | | Updated header id generation, anchors, links, and header levels. Added dedicated book page and support data. Removed extra module autocompletion and documentation from Lua module. Removed GPG signing and verification, as everything is built and distributed on GitHub. Removed all release links prior to 10.8 since there is no point in uploading the relevant files to GitHub.
* Switch back to Scintilla default (4.x), Scinterm, and Scintillua.Gravatar mitchell2020-09-13
| | | | | Scintilla LongTerm3 maintenance is ending with upcoming Scintilla 5. Textadept now requires a C++17 compiler. Also updated Docker image.
* LuaDoc doclet outputs markdown to stdout now.Gravatar mitchell2020-09-09
| | | | | Now all markdown to HTML is done in one place. Previously, the doclet generated its own HTML.
* Changed processing pipeline for manually generating documentation.Gravatar mitchell2020-09-08
|
* Updated Docker build environment to use more recent libc++ headers for osxcross.Gravatar mitchell2020-09-08
| | | | Also added some documentation.
* Handle initial queries of `ui.find.find_text` and `repl_text` in curses.Gravatar mitchell2020-09-07
|
* Fixed emission of `events.UPDATE_UI` when resuming from suspend.Gravatar mitchell2020-09-07
|
* Added `ui.find.active` and prevent word highlighting when searching.Gravatar mitchell2020-09-07
| | | | Word auto-highlighting when searching is too distracting.
* Moved all top-level .md files into docs/ except README.md.Gravatar mitchell2020-09-04
| | | | Also fixed lack of header anchors in generated HTML.
* Renamed doc/ to docs/ and removed bombay dependency.Gravatar mitchell2020-09-04
| | | | | Added some documentation infrastructure for eventual migration to a new build service. Use a simple Lua script for generating documentation offline.
* Added support for building with Docker and dropped automated Linux i386 builds.Gravatar mitchell2020-09-04
| | | | | Also tweaked Makefile with basic git support for an eventual migration to a new build service.
* Updated to latest Scintilla to get some fixes for crashes.Gravatar mitchell2020-08-23
| | | | These crashes occur when indexing Scintilla fields with out-of-bounds indices.
* Document terminal color restrictions in Lua API, not the Manual.Gravatar mitchell2020-08-23
|
* Fixed crashes introduced by r2915.Gravatar mitchell2020-08-22
|
* Only switch buffers during `buffer:delete()` if necessary.Gravatar mitchell2020-08-22
| | | | This is not necessary if deleting a non-visible buffer (e.g. in the dummy view).
* Updated to latest gtDialog to prevent Escape from being disabled for dialogs.Gravatar mitchell2020-08-22
|
* Fixed keypress handler regression when compiling with modern MinGW-w64.Gravatar mitchell2020-08-20
| | | | | | | For some reason, modern MinGW-w64 GCC always returns boolean true unless compiling with debug symbols. Most typing into Scintilla widgets was not working at all. This does not occur on older versions of MinGW GCC.
* Update to latest gtDialog to fix GTK3 compile error.Gravatar mitchell2020-08-17
|
* Updated some documentation and use macOS instead of Mac OSX.Gravatar mitchell2020-08-17
|
* Describe changes in patch files.Gravatar mitchell2020-08-14
|
* Fixed regression involving SCNotifications and text.Gravatar mitchell2020-08-09
| | | | This affects SCN_URIDROPPED among others.