Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-03-13 | Fixed build flags; src/Makefile | ||
These flags were causing the nightly builds to fail. Lua 5.3's 64-bit integers use "long long", which is not supported by c++98. However, mingw32 has issues with -std=c++0x and apple-darwin does not support it at all. Instead, resort to disabling the "long long" warning. | |||
2015-03-12 | Emit `BUFFER_AFTER_SWITCH` event before `BUFFER_DELETED`; src/textadept.c | ||
This fixes a view-specific property bug. | |||
2015-03-12 | Lua code cleanup. | ||
2015-03-12 | Removed `keys.LANGUAGE_MODULE_PREFIX` key binding. | ||
2015-03-11 | Nimrod is now Nim. | ||
Requires Scintillua r483 (changeset 90bc656005cf). | |||
2015-03-11 | Updated to Lua 5.3, LPeg 0.12.2, and lfs 1.6.3. | ||
LuaJIT uses Lua 5.3's new utf8 library. Restored documentation for Lua 5.1 symbols and added deprecation notes. | |||
2015-03-11 | Added tag textadept_7.9 for changeset da36fd43f8af | ||
2015-03-11 | Temporarily restore definition of `keys.LANGUAGE_MODULE_PREFIX`. | ||
This is to avoid 3rd party language module breakage in 7.x. Will be removed in 8.0. | |||
2015-03-11 | Fixed bug with new view-specific properties; core/ui.lua | ||
2015-03-10 | Updated CHANGELOG.md. | ||
2015-03-10 | Need latest Scinterm to utilize Scintilla patch from r1949; src/Makefile | ||
2015-03-10 | Removed `keys.LANGUAGE_MODULE_PREFIX` key binding. | ||
2015-03-10 | Updated Lua autocompletion and documentation. | ||
2015-03-10 | Updated for 7.9. | ||
2015-03-10 | Patch Scintilla to fix tab stop calculations in curses; src/scintilla.patch | ||
This patch was submitted upstream and should not be needed in the next release of Scintilla. | |||
2015-03-10 | Stop documenting some non-useful buffer functions and fields. | ||
2015-03-10 | Made `io.boms` private, as there are few BOMs in existence; core/file_io.lua | ||
2015-03-10 | Merged `textadept.file_types.shebangs` into `textadept.file_types.patterns`. | ||
2015-03-09 | Removed `keys.LANGUAGE_MODULE_PREFIX` since language modules no longer use it. | ||
Made a note in module documentation that there has been a traditional keychain reserved for use by language modules. | |||
2015-03-09 | Moved `events.FILE_SAVED_AS` into `events.FILE_AFTER_SAVE` as extra argument. | ||
2015-03-09 | Fixed accidental firing of "Escape" key on window focus lost; src/textadept.c | ||
2015-03-09 | Stop documenting hotspots since new indicator attributes supplant hotspots. | ||
Scintilla 3.5.4 added "buffer.indic_hover_style" and "buffer.indic_hover_fore", effectively replacing hotspot styles and colors. Lexers were not using hotspot styles anyway -- hotspots could only be used by manually styling text. | |||
2015-03-09 | Updated to Scintilla 3.5.4. | ||
2015-03-09 | Fixed nightly builds; src/Makefile | ||
2015-03-07 | Updated language module link and location. | ||
2015-03-07 | Added Fish lexer; modules/textadept/file_types.lua | ||
2015-03-07 | Official language modules are all in one repository now; src/Makefile | ||
2015-02-23 | Fixed bug in previous commit when switching to new buffer; core/ui.lua | ||
2015-02-18 | Save and restore view-specific properties in view switch events; core/ui.lua | ||
2015-02-18 | Consider some view-specific properties as buffer-specific ones. | ||
These include "view_eol", "wrap_mode", "view_ws", "margin_type_n", and "margin_width_n". The latter two are for preventing clashes between modules that modify margins on a per-buffer basis. | |||
2015-02-09 | Return values from abbreviated functions; modules/textadept/command_entry.lua | ||
2015-02-09 | Updated LuaDoc; core/.buffer.luadoc | ||
2015-02-02 | Added tag textadept_7.8 for changeset c1151fa95047 | ||
2015-01-31 | Updated CHANGELOG.md. | ||
2015-01-31 | Updated for 7.8. | ||
2015-01-29 | Fixed snippets bug when name matches lexer name; modules/textadept/snippets.lua | ||
Ensure the result of snippets[name] is not a table. | |||
2015-01-29 | Removed language-specific context menus. | ||
Editing `textadept.menu.context_menu` directly is good enough. | |||
2015-01-22 | Small code and documentation cleanup. | ||
2015-01-22 | Made `args.process()` private. | ||
2015-01-21 | Added tag textadept_7.8_beta_3 for changeset a8d15d14da75 | ||
2015-01-20 | Updated CHANGELOG.md. | ||
2015-01-20 | Check for modified files after resuming from suspend; core/file_io.lua | ||
2015-01-20 | Updated Lua autocompletion and documentation. | ||
2015-01-20 | Updated for 7.8 beta 3. | ||
2015-01-20 | Updated to Scintillua 3.5.3-1; src/Makefile | ||
2015-01-20 | Fixed bug in preventing standard focus out events to be fired; src/textadept.c | ||
It is desirable to keep the command entry visible if the window is losing focus. Otherwise, allow normal focus out events to be fired, including Scintilla's defaults that hide the cursor, etc. | |||
2015-01-20 | Code cleanup; src/textadept.c | ||
2015-01-20 | Updated to Scintilla 3.5.3. | ||
2015-01-20 | Fixed horizontal expand flag for Find & Replace widgets in GTK3; src/textadept.c | ||
2015-01-15 | Added events for terminal suspend and resume. | ||
Suspend can be prevented by an error handler, described in a new FAQ entry. New `events.RESUME` replaces `events.FOCUS` for the terminal version. Utilize these events to disable/enable bracketed paste and mouse modes. |