aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-03-16Code cleanup based on the output of luacheck, a Lua linter.mitchell
2015-03-15Removed long-hand compile and run string macros; modules/textadept/run.luamitchell
2015-03-16Fixed CFLAGS and CXXFLAGS passing for automated x86_64 builds; src/Makefilemitchell
2015-03-14Updated compilation information and instructions for BSD; doc/manual.mdmitchell
2015-03-14Updated lfs download zip name and link; src/Makefilemitchell
On FreeBSD the https link was problematic.
2015-03-14Updated lfs download zip name; src/Makefilemitchell
2015-03-14Filter through now uses `spawn()`; modules/textadept/editing.luamitchell
2015-03-14Prevent -h, --help switches from exiting single instance; core/args.luamitchell
2015-03-13Fixed build flags; src/Makefilemitchell
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-12Emit `BUFFER_AFTER_SWITCH` event before `BUFFER_DELETED`; src/textadept.cmitchell
This fixes a view-specific property bug.
2015-03-12Lua code cleanup.mitchell
2015-03-12Removed `keys.LANGUAGE_MODULE_PREFIX` key binding.mitchell
2015-03-11Nimrod is now Nim.mitchell
Requires Scintillua r483 (changeset 90bc656005cf).
2015-03-11Updated to Lua 5.3, LPeg 0.12.2, and lfs 1.6.3.mitchell
LuaJIT uses Lua 5.3's new utf8 library. Restored documentation for Lua 5.1 symbols and added deprecation notes.
2015-03-11Added tag textadept_7.9 for changeset da36fd43f8afmitchell
2015-03-11Temporarily restore definition of `keys.LANGUAGE_MODULE_PREFIX`.mitchell
This is to avoid 3rd party language module breakage in 7.x. Will be removed in 8.0.
2015-03-11Fixed bug with new view-specific properties; core/ui.luamitchell
2015-03-10Updated CHANGELOG.md.mitchell
2015-03-10Need latest Scinterm to utilize Scintilla patch from r1949; src/Makefilemitchell
2015-03-10Removed `keys.LANGUAGE_MODULE_PREFIX` key binding.mitchell
2015-03-10Updated Lua autocompletion and documentation.mitchell
2015-03-10Updated for 7.9.mitchell
2015-03-10Patch Scintilla to fix tab stop calculations in curses; src/scintilla.patchmitchell
This patch was submitted upstream and should not be needed in the next release of Scintilla.
2015-03-10Stop documenting some non-useful buffer functions and fields.mitchell
2015-03-10Made `io.boms` private, as there are few BOMs in existence; core/file_io.luamitchell
2015-03-10Merged `textadept.file_types.shebangs` into `textadept.file_types.patterns`.mitchell
2015-03-09Removed `keys.LANGUAGE_MODULE_PREFIX` since language modules no longer use it.mitchell
Made a note in module documentation that there has been a traditional keychain reserved for use by language modules.
2015-03-09Moved `events.FILE_SAVED_AS` into `events.FILE_AFTER_SAVE` as extra argument.mitchell
2015-03-09Fixed accidental firing of "Escape" key on window focus lost; src/textadept.cmitchell
2015-03-09Stop documenting hotspots since new indicator attributes supplant hotspots.mitchell
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-09Updated to Scintilla 3.5.4.mitchell
2015-03-09Fixed nightly builds; src/Makefilemitchell
2015-03-07Updated language module link and location.mitchell
2015-03-07Added Fish lexer; modules/textadept/file_types.luamitchell
2015-03-07Official language modules are all in one repository now; src/Makefilemitchell
2015-02-23Fixed bug in previous commit when switching to new buffer; core/ui.luamitchell
2015-02-18Save and restore view-specific properties in view switch events; core/ui.luamitchell
2015-02-18Consider some view-specific properties as buffer-specific ones.mitchell
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-09Return values from abbreviated functions; modules/textadept/command_entry.luamitchell
2015-02-09Updated LuaDoc; core/.buffer.luadocmitchell
2015-02-02Added tag textadept_7.8 for changeset c1151fa95047mitchell
2015-01-31Updated CHANGELOG.md.mitchell
2015-01-31Updated for 7.8.mitchell
2015-01-29Fixed snippets bug when name matches lexer name; modules/textadept/snippets.luamitchell
Ensure the result of snippets[name] is not a table.
2015-01-29Removed language-specific context menus.mitchell
Editing `textadept.menu.context_menu` directly is good enough.
2015-01-22Small code and documentation cleanup.mitchell
2015-01-22Made `args.process()` private.mitchell
2015-01-21Added tag textadept_7.8_beta_3 for changeset a8d15d14da75mitchell
2015-01-20Updated CHANGELOG.md.mitchell
2015-01-20Check for modified files after resuming from suspend; core/file_io.luamitchell