aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-27Fixed Alt+Gr key handling in the Windows terminal version.mitchell
2018-11-27Added command line switch to jump to a buffer line.mitchell
This is more convenient than '-e "goto_line(n - 1)"'.
2018-11-26Changed filter format to be more flat and intuitive.mitchell
Filters are now simply lists of inclusive and exclusive patterns. Added temporary compatibility and notice for old-style filters.
2018-11-25Fixed internal documentation.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-12Handle potential mismatch between snippet in buffer and snippet in memory.mitchell
Snippet prev/next coupled with subsequent edits may cause the buffer to contain an unexpected snippet placeholder. Handle it gracefully.
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-07Restored default behavior of "Home" and "Shift+Home" on non-OSX platforms.mitchell
2018-11-06Ensure 'Esc' clears highlighted words.mitchell
2018-11-06Do not modify selection in `textadept.editing.highlight_word()`.mitchell
2018-11-05Added optional position to `textadept.editing.show_documentation()`.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-11-01Added tag textadept_10.2 for changeset 9418438a2ac4mitchell
2018-11-01Updated manual and CHANGELOG.md.mitchell
2018-10-31Updated CHANGELOG.md.mitchell
2018-10-31Updated Lua autocompletion and documentation.mitchell
2018-10-31Updated for 10.2.mitchell
2018-10-31Updated to Scintilla 3.10.1.mitchell
2018-10-31Fixed inability to resize one split view configuration with the mouse in curses.mitchell
2018-10-31Fix potential crashes in `string.iconv()` with tiny strings.mitchell
2018-10-27Fixed regression with snippet expansion caused by new macro support.mitchell
2018-10-23Fixed tab labels not updating when loading message buffers from a session.mitchell
2018-10-23Make find and menu command selection more macro-friendly.mitchell
2018-10-23Actually commit new macros module.mitchell
2018-10-22Fixed Makefile rule for rebuilding lua src directory.mitchell
Some lualibs files are read-only.
2018-10-22Added module for recording, playing, saving, and loading keyboard macros.mitchell
2018-10-22Small code cleanup.mitchell
2018-10-22Removed `textadept.editing.paste()` (pasted text is reindented).mitchell
It can be implemented as a separate user module instead.
2018-10-17When filtering text through shell commands, halt on non-zero status code.mitchell
2018-10-17Return spawned process' exit code in `spawn_proc:wait()`.mitchell
2018-10-17Document the fact that `ui.print()` cannot be called during init.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-13Fixed regression of Retina support on OSX.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-08Fixed error when performing "select enclosed" on a non-ASCII character.mitchell
2018-10-01Added tag textadept_10.1 for changeset b11c20ec1cf2mitchell
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 CHANGELOG.md.mitchell
2018-09-28Updated Lua autocompletion and documentation.mitchell
2018-09-28Updated for 10.1.mitchell
2018-09-21Added Chinese translation.mitchell
Thanks to Misel Alexander.
2018-09-13Replaced `ui.find.find_in_files_filter` with `ui.find.find_in_files_filters`.mitchell
This allows for per-project "find in files" filters.
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