aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-08-30Fixed incorrect constants in buffer LuaDoc; core/.buffer.luadocmitchell
2013-08-26Commented on the new role of `_M` in the migration guide; doc/14_Appendix.htmlmitchell
2013-08-26Forgot to update some documentation with newly renamed `LEXER_LOADED` event.mitchell
2013-08-26Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now.mitchell
2013-08-26Renamed `gui` to `ui` since it's more applicable.mitchell
2013-08-25Renamed `LANGUAGE_MODULE_LOADED` event to `LEXER_LOADED` and reverted r1500.mitchell
"Creating" non-existant modules is a bad idea and causes confusion.
2013-08-24Include Scintilla constants in `buffer`s.mitchell
2013-08-11Fixed some documentation typos.mitchell
2013-08-10Added tag textadept_7.0_beta_2 for changeset 4d28bd442a56mitchell
2013-08-10Updated CHANGELOG.md.mitchell
2013-08-10Updated Lua Adeptsense.mitchell
2013-08-10Updated for 7.0 beta 2.mitchell
2013-08-10Updated some documentation.mitchell
2013-08-08Theme properties passed to `gui.set_theme()` should persist; core/gui.luamitchell
2013-08-08Fixed bug with theme loading during `reset()`; core/gui.luamitchell
2013-07-19Updated to Scintilla 3.3.4; src/Makefilemitchell
2013-07-17Fixed compile error on curses from previous commit; src/textadept.cmitchell
2013-07-16Save window maximized state in sessions.mitchell
Also ensure backward-compatibility with existing session files.
2013-07-10Added tag textadept_7.0_beta for changeset c0c1d30f5ce8mitchell
2013-07-10Updated CHANGELOG.md.mitchell
2013-07-10Updated Lua Adeptsense.mitchell
2013-07-10Updated for 7.0 beta.mitchell
2013-07-09Fixed bug in previous commit; modules/textadept/init.luamitchell
2013-07-08Renamed Textadept module's "mime_types" to "file_types" and removed config file.mitchell
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