aboutsummaryrefslogtreecommitdiffhomepage
path: root/core
Commit message (Collapse)AuthorAge
...
* Allow connection to `events.QUIT` without requiring index of 1.Gravatar mitchell2014-11-26
|
* Fixed bug when iterating over root directory; core/lfs_ext.luaGravatar mitchell2014-11-25
| | | | Files returned had two leading slashes (//etc, //usr, etc.).
* File dialogs in the terminal should span the entire view; core/file_io.luaGravatar mitchell2014-11-23
|
* Added Arabic translation.Gravatar mitchell2014-11-13
| | | | Thanks to Ahed Eid.
* Code and documentation cleanup.Gravatar mitchell2014-11-12
|
* Added new `_SCINTILLA.next_image_type()` for registering images.Gravatar mitchell2014-11-11
|
* Added keysym for Keypad Enter; core/keys.luaGravatar mitchell2014-11-11
|
* Fixed return values from `ui.dialogs.optionselect()`; core/ui.luaGravatar mitchell2014-11-06
|
* Use the current working directory in fileselect dialogs.Gravatar mitchell2014-11-06
| | | | This should have been committed long ago.
* Added `LINUX` and `BSD` platform flags for the sake of completeness.Gravatar mitchell2014-10-30
| | | | Previously, Linux was inferred from the expression `not WIN32 and not OSX`.
* Improvements to terminal mouse handling.Gravatar mitchell2014-10-25
| | | | | | | | | | | | 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.
* Handle unknown CSI events and bracketed pasted in the terminal version.Gravatar mitchell2014-10-18
| | | | For bracketed paste, turn off auto-pair and auto-indent.
* Replaced command entry text field with a Scintilla buffer.Gravatar mitchell2014-10-05
| | | | | | | | | `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()`.
* Updated for 7.7.Gravatar mitchell2014-09-29
|
* Updated to Scintilla 3.5.1.Gravatar mitchell2014-09-29
|
* More LuaDoc updates.Gravatar mitchell2014-09-17
|
* Updated some LuaDoc.Gravatar mitchell2014-09-16
|
* Fixed corner-case in switching to most recent buffer after closing; core/ui.luaGravatar mitchell2014-09-11
|
* Enable true spawning on Mac OSX GUI version.Gravatar mitchell2014-09-04
| | | | This requires lspawn r25 (changeset acdfac5eb4cf).
* Updated for Textadept 7.6.Gravatar mitchell2014-09-01
|
* Updated to Scintilla 3.5.0.Gravatar mitchell2014-08-18
|
* Fixed LuaDoc; core/.buffer.luadocGravatar mitchell2014-08-15
|
* More options for `lfs.dir_foreach()`; core/lfs_ext.luaGravatar mitchell2014-08-15
| | | | | A limit on the level of directories to recurse into can be placed, and directory names can be passed to functions.
* Switch to previous buffer after closing a buffer; core/ui.luaGravatar mitchell2014-08-10
|
* Indicate presence of a BOM next to statusbar encoding; core/ui.luaGravatar mitchell2014-08-09
|
* Updated Swedish translation; core/locales/locale.sv.confGravatar mitchell2014-07-19
| | | | Thanks to Niklas Wallén.
* Implement spawn functionality for terminal version.Gravatar mitchell2014-07-12
| | | | | Requires lspawn r21. Thanks to Chris Emerson for proof-of-concept code. Spawning still does not work for Win32 terminal version, though.
* Updated for 7.5.Gravatar mitchell2014-07-10
|
* Updated Polish translation; core/locales/locale.pl.confGravatar mitchell2014-07-09
| | | | Thanks to Piotr Orzechowski.
* Updated to Scintilla 3.4.4.Gravatar mitchell2014-07-03
|
* Updated links and homepage.Gravatar mitchell2014-07-02
|
* Condensed manual and API documentation into single files.Gravatar mitchell2014-06-30
|
* Updated Polish translation; core/locales/locale.pl.confGravatar mitchell2014-06-24
| | | | Thanks to Piotr Orzechowski
* Added Polish translation.Gravatar mitchell2014-06-21
| | | | Thanks to Piotr Orzechowski.
* Added `event.FOCUS` for when Textadept's window receives focus.Gravatar mitchell2014-06-20
|
* Lua code cleanup.Gravatar mitchell2014-06-12
|
* Updated for 7.4.Gravatar mitchell2014-06-10
|
* Added buffer constants to buffer LuaDoc and improved Lua tags and api generator.Gravatar mitchell2014-06-07
|
* Added parameter to `events.UPDATE_UI`.Gravatar mitchell2014-06-07
|
* Updated spawn LuaDoc; core/init.luaGravatar mitchell2014-06-04
|
* Pressing "Enter" in message buffer simulates double-click.Gravatar mitchell2014-06-04
| | | | | 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.
* Updated for 7.3.Gravatar mitchell2014-05-31
|
* Fixed erroneous LuaDoc.Gravatar mitchell2014-05-31
|
* Code cleanup.Gravatar mitchell2014-05-29
|
* Updated LuaDoc.Gravatar mitchell2014-05-28
|
* Textadept's menus may be edited in-place via the `textadept.menu` module.Gravatar mitchell2014-05-28
| | | | | Any changes, even incremental ones, are reflected immediately. As a result, removed `set_menubar()` and `set_contextmenus()` from API.
* Removed `textadept.editing.select_indented_block()`.Gravatar mitchell2014-05-28
|
* Updated LuaDoc.Gravatar mitchell2014-05-28
|
* Updated to Scintilla 3.4.2.Gravatar mitchell2014-05-25
| | | | | | | 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.
* Removed Adeptsense in favor of new framework committed in r1735.Gravatar mitchell2014-05-24
| | | | | Replaced ANSI C and Lua module Adeptsenses with their equivalent autocompleter functions.