aboutsummaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2014-11-13Added Arabic translation.mitchell
Thanks to Ahed Eid.
2014-11-12Code and documentation cleanup.mitchell
2014-11-11Added new `_SCINTILLA.next_image_type()` for registering images.mitchell
2014-11-11Added keysym for Keypad Enter; core/keys.luamitchell
2014-11-06Fixed return values from `ui.dialogs.optionselect()`; core/ui.luamitchell
2014-11-06Use the current working directory in fileselect dialogs.mitchell
This should have been committed long ago.
2014-10-30Added `LINUX` and `BSD` platform flags for the sake of completeness.mitchell
Previously, Linux was inferred from the expression `not WIN32 and not OSX`.
2014-10-25Improvements to terminal mouse handling.mitchell
Emit events for unhandled mouse events and connect to such events in order to focus and resize views. Patch libtermkey with new Win32 PDCurses driver for unified key/mouse input. Update CDK patch to always use libtermkey and to ignore mouse events. Requires Scinterm r97 (changeset 8d1a625c9b4d). Thanks to Chris Emerson for proof of concept code that handles mouse events and for the code that focuses and resizes views.
2014-10-18Handle unknown CSI events and bracketed pasted in the terminal version.mitchell
For bracketed paste, turn off auto-pair and auto-indent.
2014-10-05Replaced command entry text field with a Scintilla buffer.mitchell
`ui.command_entry` now has the same functions and fields as `buffer`s as well as an additional `height` property. Note that when the command entry is active, `_G.buffer` is unchanged, so many existing key commands cannot be bound to command entry key modes. See `keys.lua_command` in *modules/textadept/command_entry.lua* for the proper way to bind them. Removed `ui.command_entry.entry_text` and `ui.command_entry.show_completions()`.
2014-09-29Updated for 7.7.mitchell
2014-09-29Updated to Scintilla 3.5.1.mitchell
2014-09-17More LuaDoc updates.mitchell
2014-09-16Updated some LuaDoc.mitchell
2014-09-11Fixed corner-case in switching to most recent buffer after closing; core/ui.luamitchell
2014-09-04Enable true spawning on Mac OSX GUI version.mitchell
This requires lspawn r25 (changeset acdfac5eb4cf).
2014-09-01Updated for Textadept 7.6.mitchell
2014-08-18Updated to Scintilla 3.5.0.mitchell
2014-08-15Fixed LuaDoc; core/.buffer.luadocmitchell
2014-08-15More options for `lfs.dir_foreach()`; core/lfs_ext.luamitchell
A limit on the level of directories to recurse into can be placed, and directory names can be passed to functions.
2014-08-10Switch to previous buffer after closing a buffer; core/ui.luamitchell
2014-08-09Indicate presence of a BOM next to statusbar encoding; core/ui.luamitchell
2014-07-19Updated Swedish translation; core/locales/locale.sv.confmitchell
Thanks to Niklas Wallén.
2014-07-12Implement spawn functionality for terminal version.mitchell
Requires lspawn r21. Thanks to Chris Emerson for proof-of-concept code. Spawning still does not work for Win32 terminal version, though.
2014-07-10Updated for 7.5.mitchell
2014-07-09Updated Polish translation; core/locales/locale.pl.confmitchell
Thanks to Piotr Orzechowski.
2014-07-03Updated to Scintilla 3.4.4.mitchell
2014-07-02Updated links and homepage.mitchell
2014-06-30Condensed manual and API documentation into single files.mitchell
2014-06-24Updated Polish translation; core/locales/locale.pl.confmitchell
Thanks to Piotr Orzechowski
2014-06-21Added Polish translation.mitchell
Thanks to Piotr Orzechowski.
2014-06-20Added `event.FOCUS` for when Textadept's window receives focus.mitchell
2014-06-12Lua code cleanup.mitchell
2014-06-10Updated for 7.4.mitchell
2014-06-07Added buffer constants to buffer LuaDoc and improved Lua tags and api generator.mitchell
2014-06-07Added parameter to `events.UPDATE_UI`.mitchell
2014-06-04Updated spawn LuaDoc; core/init.luamitchell
2014-06-04Pressing "Enter" in message buffer simulates double-click.mitchell
In a "Find in Files" buffer, goes to the file on the current line. In a message buffer, jumps to the error or warning on the current line.
2014-05-31Updated for 7.3.mitchell
2014-05-31Fixed erroneous LuaDoc.mitchell
2014-05-29Code cleanup.mitchell
2014-05-28Updated LuaDoc.mitchell
2014-05-28Textadept's menus may be edited in-place via the `textadept.menu` module.mitchell
Any changes, even incremental ones, are reflected immediately. As a result, removed `set_menubar()` and `set_contextmenus()` from API.
2014-05-28Removed `textadept.editing.select_indented_block()`.mitchell
2014-05-28Updated LuaDoc.mitchell
2014-05-25Updated to Scintilla 3.4.2.mitchell
Also temporarily include my upstream patch for autocompletion into multiple selections. When 3.4.3 comes out, the patch may be removed. This commit negates the requirement for Scintilla post 3.4.2, mentioned in 1736:12256c79f24b.
2014-05-24Removed Adeptsense in favor of new framework committed in r1735.mitchell
Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter functions.
2014-05-24Updated past Scintilla 3.4.2 for `buffer.auto_c_multi` feature.mitchell
Removed workaround for autocompleting in multiple selections. Requires Scintilla changeset 5114:bd09a915437d.
2014-05-23Renamed `io.set_buffer_encoding()` to `buffer:set_encoding()`.mitchell
2014-05-13Documented new `proc:read()`; core/.proc.luadocmitchell
Requires lspawn r18.