aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2013-05-29Allow "%()" property expansion in themes like with compile/run macros.mitchell
2013-05-29Load a language context menu based solely on lexer; modules/textadept/menu.luamitchell
2013-05-28Rewrote LuaDoc; modules/textadept/adeptsense.luamitchell
2013-05-26Updated migration guide; doc/14_Appendix.mdmitchell
2013-05-26Rewrote some LuaDoc to use the active voice.mitchell
2013-05-25Updated for 7.0 alpha.mitchell
2013-05-25Reformatted "style.default" in themes.mitchell
2013-05-25Added migration guide from Textadept 6 to Textadept 7; doc/14_Appendix.mdmitchell
2013-05-24Rewrote migration guides; doc/14_Appendix.mdmitchell
2013-05-24Added section on customizing themes; doc/09_Themes.mdmitchell
2013-05-22Use 'font' and 'fontsize' properties for theme fonts.mitchell
2013-05-21Renamed "settings.lua" to "properties.lua".mitchell
2013-05-20Updated README.md.mitchell
2013-05-20Rewrote the manual to use the active voice.mitchell
2013-05-15Rewrote theme implementation.mitchell
Themes are now just single files that share Textadept's Lua state. Also added a new "settings.lua" that functions in place of buffer and view theme files. Requires latest Scintillua.
2013-05-29Fixed crash caused by split views.mitchell
This fix is in 6.6.
2013-05-25Added tag textadept_6.6 for changeset 73a9a9058189mitchell
2013-05-25Updated CHANGELOG.md.mitchell
2013-05-25Updated Lua Adeptsense.mitchell
2013-05-25Updated for 6.6.mitchell
2013-05-22Documented extended styles in Scintilla; core/.buffer.luadocmitchell
2013-05-22Fixed tags for global tables within modules; modules/lua/adeptsensedoc.luamitchell
2013-05-21Use '\n' keycode in curses instead of '\r'; src/textadept.cmitchell
Win32-curses still uses '\r' since pdcurses reports it.
2013-05-20Code cleanup; modules/textadept/editing.luamitchell
2013-05-20Print the results of '=' Lua expressions; modules/textadept/command_entry.luamitchell
2013-05-20Updated to Scintilla 3.3.2.mitchell
2013-05-20Fix caret placement in block comment/uncomment.mitchell
Thanks to Richard Philips.
2013-05-16Allow empty tables as keychains if they have metatables; core/keys.luamitchell
2013-05-16Reverted r1412 to allow hiding command entry on focus lost; src/textadept.cmitchell
If command_entry_completion handles keys first, pressing "Tab" after showing completions switches focus to Scintilla without propagating the key. If command_entry handles keys first, pressing "Enter" in the completion list will be incorrectly interpreted as a normal "Enter" press. Reverted to using the "activate" signal to interpret "Enter" so command_entry can handle keys first, keeping "Tab" from switching focus.
2013-05-15Fixed misspelling; THANKS.mdmitchell
2013-05-15Fix absolute field tags; modules/lua/adeptsensedoc.luamitchell
An absolute field like '_G.events.FILE_OPENED' used to be tagged as belonging to the 'io' module, but it is tagged properly now.