aboutsummaryrefslogtreecommitdiffhomepage
path: root/core
Commit message (Collapse)AuthorAge
* Updated to Scintilla 3.3.7.Gravatar mitchell2013-12-15
|
* Do not stop opening files if one of them is already open; core/file_io.luaGravatar 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.
* More LuaDoc updates.Gravatar mitchell2013-12-12
|
* Fixed `os.execute()` return values in experimental winapi; core/file_io.luaGravatar mitchell2013-11-20
|
* Do not split the view when printing messages if tabs are enabled; core/ui.luaGravatar mitchell2013-11-19
|
* 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`.
* LuaDoc updates.Gravatar mitchell2013-11-18
|
* Updated for 7.1.Gravatar mitchell2013-11-11
|
* Updated documentation.Gravatar mitchell2013-11-11
|
* Added `events.FILE_CHANGED`; core/file_io.luaGravatar mitchell2013-11-11
| | | | Add an event handler at index 1 to override the default prompt to reload.
* Fixed bug with Scintilla notification constants.Gravatar mitchell2013-11-11
|
* `ui.clipboard_text` is no longer read-only.Gravatar mitchell2013-11-10
|
* Updated LuaDoc.Gravatar mitchell2013-11-10
|
* Added support for tabs.Gravatar mitchell2013-11-07
|
* Updated for 7.0.Gravatar mitchell2013-10-30
|
* More documentation updates.Gravatar mitchell2013-10-29
|
* Combine `SCFIND_POSIX` with `SCFIND_REGEXP` into `buffer.FIND_REGEXP`.Gravatar mitchell2013-10-23
| | | | Both values are required for regexp searches.
* Updated for 7.0 beta 5.Gravatar mitchell2013-10-21
|
* More LuaDoc updates.Gravatar mitchell2013-10-21
|
* Added "Save All" to the menu.Gravatar mitchell2013-10-18
|
* 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`.
* More LuaDoc updates.Gravatar mitchell2013-10-18
|
* More LuaDoc updates.Gravatar mitchell2013-10-09
|
* Renamed `buffer.FIND_POSIX` to `buffer.FIND_REGEX` for Lua-like captures syntax.Gravatar mitchell2013-10-02
|
* Changed `ui.set_theme()` API to accept a table of properties to assign.Gravatar mitchell2013-10-02
|
* Updated for Textadept 7.0 beta 4.Gravatar mitchell2013-09-30
|
* Added new `ui.dialogs` module for more user-friendly dialog support.Gravatar mitchell2013-09-29
| | | | | | As a result, removed `ui.filteredlist()` and changed `io.open_file()` and `io.snapopen()` APIs to accept tables of files and paths instead of "\n" delimited strings.
* Integrated compile and run commands for most languages.Gravatar mitchell2013-09-27
| | | | | | | Compile and run should work out of the box for most languages. Also added a warning marker, renamed `compile_command` and `run_command` tables to `compile_commands` and `run_commands`, respectively, and renamed `error_details` to `error_patterns`, changing its structure to just hold patterns.
* Code and documentation cleanup.Gravatar mitchell2013-09-23
|
* Renamed `buffer:convert_eo_ls()` to `buffer:convert_eols()`.Gravatar mitchell2013-09-21
|
* Removed the `SC` prefix from most constants in `_SCINTILLA.constants`.Gravatar mitchell2013-09-16
|
* Removed the `SC_` prefix from constants in `_SCINTILLA.constants`.Gravatar mitchell2013-09-16
| | | | Also removed more unused constants.
* Do not convert filenames to UTF-8; keep them in `_CHARSET`.Gravatar mitchell2013-09-15
|
* Removed some unused constants from `_SCINTILLA.constants`.Gravatar mitchell2013-09-14
|
* Updated some LuaDoc.Gravatar mitchell2013-09-13
|
* Changed `events.disconnect()` to accept function argument instead of ID.Gravatar mitchell2013-09-12
|
* Do not cache `_G.arg`; core/args.luaGravatar mitchell2013-09-10
| | | | This also helps fix a bug caused in part by r1557.
* Fixed bug with previous commit.Gravatar mitchell2013-09-10
|
* Use `events.ARG_NONE` constant instead of string.Gravatar mitchell2013-09-09
|
* Moved buffer IO functions into the `io` module.Gravatar mitchell2013-09-09
| | | | Menus and key bindings do not need `events.INITIALIZED`.
* Updated for 7.0 beta 3.Gravatar mitchell2013-09-08
|
* Fixed potential crash caused by split views.Gravatar mitchell2013-09-08
|
* Fixed bug in processing command line options introduced in r1546.Gravatar mitchell2013-09-06
|
* Updated LuaDoc.Gravatar mitchell2013-09-06
|
* Renamed `ui.docstatusbar_text` to `ui.bufstatusbar_text`.Gravatar mitchell2013-09-05
|
* Renamed `buffer:get_style_name(n)` to `buffer.style_name[n]`.Gravatar mitchell2013-09-01
|
* Allow user scripts to handle `BUFFER_NEW` and `VIEW_NEW` events on startup.Gravatar mitchell2013-08-31
| | | | A side effect is more efficient event emission during startup.
* Fixed incorrect constants in buffer LuaDoc; core/.buffer.luadocGravatar mitchell2013-08-30
|
* Forgot to update some documentation with newly renamed `LEXER_LOADED` event.Gravatar mitchell2013-08-26
|