aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* 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 for 7.3.Gravatar mitchell2014-05-31
|
* Code cleanup.Gravatar mitchell2014-05-29
|
* 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.
* Drop support for official java, php, rails, and rhtml modules; src/MakefileGravatar mitchell2014-05-24
|
* Recognize reST and YAML files.Gravatar mitchell2014-05-10
| | | | Requires Scintillua r423.
* Fixed bug in exporting Lua symbols on Windows.Gravatar mitchell2014-05-10
|
* Updated for 7.2.Gravatar mitchell2014-04-30
|
* Updated for 7.2 beta 4.Gravatar mitchell2014-04-10
|
* More accurate error message; src/textadept.cGravatar mitchell2014-04-10
|
* Updated for 7.2 beta 2.Gravatar mitchell2014-04-01
|
* Updated to Scintilla 3.4.1; src/MakefileGravatar mitchell2014-04-01
|
* Added basic project support for snapopen and build scripts.Gravatar mitchell2014-03-27
| | | | Also fixed some curses errors introduced by the last commit.
* Include my new "lspawn" module by default for spawning processes.Gravatar mitchell2014-03-26
| | | | | | | 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()`.
* Updated to Scintilla 3.4.0 and LuaJIT 2.0.3.Gravatar mitchell2014-03-23
|
* Fixed Win32 terminal bug that disallowed Shifted characters; src/textadept.cGravatar mitchell2014-03-10
|
* Added support for gtdialog's new `optionselect` dialog.Gravatar mitchell2014-03-05
| | | | This requires gtdialog r68 (changeset 1426c89d2874).
* Updated for 7.2 beta 2.Gravatar mitchell2014-03-01
|
* Added split views in the terminal version thanks to Chris Emerson.Gravatar mitchell2014-02-12
|
* C code cleanup; src/textadept.cGravatar mitchell2014-02-12
|
* Updated for 7.2 beta.Gravatar mitchell2014-02-10
|
* Removed unnecessary return from `main()`; src/textadept.cGravatar mitchell2014-02-10
|
* Updated to Scintilla 3.3.9.Gravatar mitchell2014-02-05
|
* Small C code cleanup; src/textadept.cGravatar mitchell2014-01-16
|
* Updated copyright information.Gravatar mitchell2014-01-12
|
* New home page along with some documentation content and layout changes.Gravatar mitchell2014-01-12
|
* Updated for 7.2 alpha.Gravatar mitchell2014-01-01
|
* Merge the separate Textadept and lexer Lua states into a single unified one.Gravatar mitchell2014-01-01
| | | | This is an experimental change and requires the latest Scintillua changes.
* C code cleanup; src/textadept.cGravatar mitchell2013-12-29
|
* Ensure wget uses the correct names when saving dependencies; src/MakefileGravatar mitchell2013-12-19
| | | | | Some websites serve packages using strange URLs or have odd names that can confuse different versions of wget.
* Added configurable tab context menus.Gravatar mitchell2013-12-19
| | | | | Deprecated `textadept.menu.set_contextmenu()` in favor of new `textadept.menu.set_contextmenus()`.
* Export TermKey instance so CDK can use it for input.Gravatar mitchell2013-12-19
| | | | | This eliminates the problems caused by libtermkey and CDK having separate input buffers.
* Renamed "hypertext" lexer to "html".Gravatar mitchell2013-12-18
|
* Updated to Scintilla 3.3.7.Gravatar mitchell2013-12-15
|
* Updated src/lua.patch for Lua 5.2.3.Gravatar mitchell2013-12-15
|
* Updated to Lua 5.2.3; src/MakefileGravatar mitchell2013-12-14
|
* Allow process writing in experimental winapi.Gravatar mitchell2013-12-14
| | | | Other modifications to make the return value for `io.popen()` more file-like.
* Experimental winapi extension for preventing the flashing black box on Windows.Gravatar mitchell2013-11-19
| | | | | Compile in a stripped version of Steve Donovan's winapi library and override `io.popen` and `os.execute`.
* Updated for 7.1.Gravatar mitchell2013-11-11
|
* `ui.clipboard_text` is no longer read-only.Gravatar mitchell2013-11-10
|
* Added support for tabs.Gravatar mitchell2013-11-07
|
* Updated for 7.0.Gravatar mitchell2013-10-30
|
* Fixed GTK3 bug with split views introduced in r1611; src/textadept.cGravatar mitchell2013-10-30
|
* Fix OSX command key recognition; src/scintilla.patchGravatar mitchell2013-10-30
|
* Temporary patch to identify OSX command key mouse modifiers; src/scintilla.patchGravatar mitchell2013-10-29
| | | | | Will be removed when upgrading to Scintilla > 3.3.6 if upstream patch is accepted.
* Fix warnings and errors when compiling for GTK3.Gravatar mitchell2013-10-29
|
* Updated for 7.0 beta 5.Gravatar mitchell2013-10-21
|
* The buffer API applies to all buffers now, not just the global one.Gravatar mitchell2013-10-18
| | | | | | Created a "dummy" Scintilla view for operating on non-global documents. Removed `buffer:check_global()` and replaced `buffer.dirty` with Scintilla's `buffer.modify`.