aboutsummaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
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.
2014-04-30Updated documentation.mitchell
2014-04-30Updated for 7.2.mitchell
2014-04-10Updated for 7.2 beta 4.mitchell
2014-04-10Temporarily disable spawn in OSX due to GLib crashes.mitchell
2014-04-10Fixed bug introduced by r1710 relating to absolute paths.mitchell
2014-04-06Added `lfs.abspath()` in order to always use absolute paths.mitchell
Thanks to Pedro Andres Aranda Gutierrez.
2014-04-06Fixed bug when cancelling dropdown dialog; core/ui.luamitchell
2014-04-01Updated for 7.2 beta 2.mitchell
2014-03-28Arguments to `spawn()` should be in _CHARSET, not necessarily UTF-8.mitchell
2014-03-28Added more documentation on project building.mitchell
2014-03-27Added basic project support for snapopen and build scripts.mitchell
Also fixed some curses errors introduced by the last commit.
2014-03-26Include my new "lspawn" module by default for spawning processes.mitchell
The `textadept.run` module now uses `spawn()` instead of `io.popen()`. This module replaces the dependency on winapi. Removed experimental `io.popen()` and `os.execute()` hooks. They may be re-implemented later using `spawn()`.
2014-03-23Updated to Scintilla 3.4.0 and LuaJIT 2.0.3.mitchell
2014-03-20Added new `ui.SILENT_PRINT` option for printing to buffers silently; core/ui.luamitchell
Those buffers will not steal focus and no views will be split.
2014-03-05Added support for gtdialog's new `optionselect` dialog.mitchell
This requires gtdialog r68 (changeset 1426c89d2874).
2014-03-01Updated for 7.2 beta 2.mitchell
2014-03-01Use `assert(...)` as a shortcut for `if not ... then error() end`.mitchell
2014-02-19Fixed bug introduced by last commit; core/ui.luamitchell
2014-02-18Fixed bug with empty entries in multiple entry inputdialogs; core/ui.luamitchell
2014-02-10Updated for 7.2 beta.mitchell
2014-02-10Improved compatibility of experimental winapi `os.execute()`; core/file_io.luamitchell
2014-02-05Updated to Scintilla 3.3.9.mitchell
2014-01-28Fixed bug with restoring views in buffers with word wrap enabled; core/ui.luamitchell
2014-01-16Added support for multiple entry boxes in inputdialogs.mitchell
Requires latest gtdialog hg (r67).
2014-01-14Added Swedish translation from Niklas Wallén.mitchell
2014-01-12Updated copyright information.mitchell
2014-01-03Handle './' and '../' sequences in filepaths; core/file_io.luamitchell
2014-01-01Updated for 7.2 alpha.mitchell
2014-01-01Merge the separate Textadept and lexer Lua states into a single unified one.mitchell
This is an experimental change and requires the latest Scintillua changes.
2013-12-19Some programs pass lower-case drive letters to external editors; core/args.luamitchell
2013-12-19Added configurable tab context menus.mitchell
Deprecated `textadept.menu.set_contextmenu()` in favor of new `textadept.menu.set_contextmenus()`.
2013-12-18Enable read-only access to the current chain of key sequences; core/keys.luamitchell
2013-12-16Updated LuaDoc; core/.buffer.luadocmitchell
2013-12-15Added dummy `flush()` for processes in experimental winapi; core/file_io.luamitchell
2013-12-15Updated to Scintilla 3.3.7.mitchell
2013-12-14Do not stop opening files if one of them is already open; core/file_io.luamitchell
2013-12-14Allow process writing in experimental winapi.mitchell
Other modifications to make the return value for `io.popen()` more file-like.
2013-12-12More LuaDoc updates.mitchell
2013-11-20Fixed `os.execute()` return values in experimental winapi; core/file_io.luamitchell