aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2013-09-08Expose marker and indicator numbers for greater customization.mitchell
Removed their respective color settings.
2013-09-05Renamed `ui.docstatusbar_text` to `ui.bufstatusbar_text`.mitchell
2013-09-01Renamed `buffer:get_style_name(n)` to `buffer.style_name[n]`.mitchell
2013-08-31Allow user scripts to handle `BUFFER_NEW` and `VIEW_NEW` events on startup.mitchell
A side effect is more efficient event emission during startup.
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-11Fixed some documentation typos.mitchell
2013-08-10Updated some documentation.mitchell
2013-07-16Save window maximized state in sessions.mitchell
Also ensure backward-compatibility with existing session files.
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-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-21Remove theme selection since it does not persist.mitchell
Encourage calling `gui.set_theme()` from *~/.textadept/init.lua* instead.
2013-06-21`gui.set_theme()` accepts key-value argument pairs for theme properties to set.mitchell
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-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-06Added Makefile rules for creating cross-platform UI build environments.mitchell
2013-06-06Fixed broken GTK links; doc/12_Compiling.mdmitchell
2013-06-06Setting "style." properties updates styles immediately; doc/09_Themes.mdmitchell
Requires Scintillua r370.
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-26Updated migration guide; doc/14_Appendix.mdmitchell
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-21Renamed "settings.lua" to "properties.lua".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-15Set language-specific buffer properties through an event instead of a function.mitchell
2013-05-15`_M.textadept = require('textadept')` in user init is superfluous.mitchell
The module was being loaded by default anyway. Besides, the user's modules/textadept/init.lua controls which parts are loaded.
2013-05-15Updated old documentation.mitchell
2013-05-09Added notes on compiling the Win32 terminal version; doc/12_Compiling.mdmitchell
2013-04-30Word highlighting is supported in curses; doc/06_AdeptEditing.mdmitchell
2013-04-29More code cleanup.mitchell
"local buffer = buffer" and similar optimizations are not needed since lexing the buffer is much more expensive and reaction time is limited by how fast the keyboard can submit key presses.
2013-04-27Updated manual images.mitchell
2013-04-26Fixed compilation error for CDK on Mac OSX.mitchell
2013-04-24Renamed `goto_file_in_list()` to `goto_file_found()` and revamped functionality.mitchell
Also changed experimental find incremental API.
2013-04-24Mark recognized errors in compile/run output and added navigation functions.mitchell
2013-04-21Updates to compile with latest GTK-OSX.mitchell
This fixes Fn key recognition.
2013-04-19Updated some documentation.mitchell
2013-04-19Modified some CDK code for Win32 curses; doc/12_Compiling.mdmitchell
2013-04-11Added key modes and changed the command entry to use them.mitchell
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`.
2013-04-08Make "command_entry_keypress" event more consistent with "keypress" in curses.mitchell
2013-04-06Update terminal color definitions.mitchell
Requires Scinterm r47.
2013-04-05Initial support for Windows terminal via pdcurses.mitchell