aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-07-08Renamed "language-specific" modules to just "language modules" in documentation.mitchell
2013-07-08Added curses keys to key bindings documentation; modules/textadept/keys.luamitchell
2013-07-08Fixed bug in Lua Pattern "Replace All"; modules/textadept/find.luamitchell
Do not match pattern anchors.
2013-07-08Ensure split view is painted by GTK before scrolling it; src/textadept.cmitchell
This prevents any disorienting scrolling.
2013-07-08Ensure split view is drawn by GTK before scrolling it; src/textadept.cmitchell
This prevents any disorienting scrolling.
2013-07-08Added file type for Go; modules/textadept/mime_types.confmitchell
2013-07-01Updated CHANGELOG.md.mitchell
2013-07-01Added tag textadept_7.0_alpha_2 for changeset f4ecfa25e9eamitchell
2013-06-29Updated Lua Adeptsense.mitchell
2013-06-29Updated for 7.0 alpha 2.mitchell
2013-06-26Added Q&A for Mac OSX terminal colors; FAQ.mdmitchell
2013-06-24Consolidated bookmarks module's "goto" functions into a new `goto_mark()`.mitchell
2013-06-24Removed `_G.RESETTING`; test for `arg` instead.mitchell
2013-06-23Fixed module releases; src/Makefilemitchell
2013-06-23Reverted to lfs 1.6.0 since later versions break the LuaJIT version.mitchell
2013-06-23Use precompiled 64-bit libluajit.a for release and nightly builds; src/Makefilemitchell
2013-06-22Refactored Makefile for release and nightly builds.mitchell
2013-06-21Removed redundant source release.mitchell
2013-06-21Use lfs 1.6.2 instead of latest master; src/Makefilemitchell
2013-06-21Do not allow transposing in empty buffer; modules/textadept/editing.luamitchell
2013-06-21Remove theme selection since it does not persist.mitchell
Encourage calling `gui.set_theme()` from *~/.textadept/init.lua* instead.
2013-06-21Always emit `events.LANGUAGE_MODULE_LOADED`; modules/textadept/mime_types.luamitchell
Creates an empty language-specific module if none exists. This enables users to add keys and snippets for any lexer without an existing language-specific module. It also allows themes to override styles for any lexer.
2013-06-21`gui.set_theme()` accepts key-value argument pairs for theme properties to set.mitchell
2013-06-20Allow multiple jobs; src/Makefilemitchell
2013-06-20Fixed bug in find and run double-click event handlers.mitchell
2013-06-20Fixed crash when transposing in empty buffer; modules/textadept/editing.luamitchell
2013-06-19Added support for nightly Linux x86_64 build.mitchell
2013-06-17Reverted to LPeg 0.10.2; src/Makefilemitchell
2013-06-16Added links to nightly builds; README.mdmitchell
2013-06-15Allow for automated nightly builds; src/Makefilemitchell
2013-06-14Code cleanup; src/Makefilemitchell
2013-06-14New makefile rules for preparing build environments on various platforms.mitchell
2013-06-12`_M.textadept.editing.block_comment()` supports block comment delimiters.mitchell
Also integrated comment strings into `_M.textadept.editing.comment_string` so block commenting works out of the box.
2013-06-12Renamed editing module's `STRIP_WHITESPACE_ON_SAVE` to `STRIP_TRAILING_SPACES`.mitchell
2013-06-12Renamed Adeptsense image fields.mitchell
2013-06-12Removed `_L._EXISTS()`; core/locale.luamitchell
2013-06-12Removed `_LEXERPATH`.mitchell
2013-06-09New makefile 'osx-app' rule for building Textadept.app.mitchell
Also added some OSX scripts from the bundle to the repository. Requires the latest "GTK+ for OSX bundle".
2013-06-08No need to initialize static variables; src/textadept.cmitchell
C implicitly initializes them to NULL.
2013-06-06Added Makefile rules for creating cross-platform UI build environments.mitchell
2013-06-06Fixed broken GTK links; doc/12_Compiling.mdmitchell
2013-06-06Only set theme and property settings once on startup; core/gui.luamitchell
2013-06-06Setting "style." properties updates styles immediately; doc/09_Themes.mdmitchell
Requires Scintillua r370.
2013-06-04Fixed curses autocomplete with the "Enter" key.mitchell
This reverts "Enter" to '\r' in Lua, so make a KEYSYM to retain '\n'.
2013-06-04Added quick download links; README.mdmitchell
2013-06-03Fixed bug where default theme in _USERHOME is not loaded; core/gui.luamitchell
2013-05-31Added tag textadept_7.0_alpha for changeset 653aa6380bdfmitchell
2013-05-31Updated CHANGELOG.md.mitchell
2013-05-29Updated Lua Adeptsense.mitchell
2013-05-29Added more theme change documentation to migration guide; doc/14_Appendix.mdmitchell