aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
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-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-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 `_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-05-29Updated Lua Adeptsense.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-26Rewrote some LuaDoc 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-25Updated Lua Adeptsense.mitchell
2013-05-22Fixed tags for global tables within modules; modules/lua/adeptsensedoc.luamitchell
2013-05-20Code cleanup; modules/textadept/editing.luamitchell
2013-05-20Print the results of '=' Lua expressions; modules/textadept/command_entry.luamitchell
2013-05-20Fix caret placement in block comment/uncomment.mitchell
Thanks to Richard Philips.
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.
2013-05-15Set language-specific buffer properties through an event instead of a function.mitchell
2013-04-30More code cleanup.mitchell
2013-04-30Refactored find and replace all; modules/textadept/find.luamitchell
Lua pattern matching in reverse is now possible.
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 Lua Adeptsense.mitchell
2013-04-26Updated documentation; modules/textadept/run.luamitchell
2013-04-26Consolidated the editing module's `grow_selection()` into `enclose_selected()`.mitchell
The former was originally designed to complement the latter.
2013-04-26Handle new "lexer/current" format from LPeg lexer's API change.mitchell
Also refactored modules/textadept/mime_types.lua. Requires Scintillua r357.
2013-04-25Added icons to msgbox dialogs.mitchell
Requires gtdialog r56.
2013-04-25Code and documentation cleanup.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-24Moved `_M.textadept.filter_through` functionality into `editing` module.mitchell
2013-04-24Hide `menubar` and `contextmenu` tables from the API; modules/textadept/menu.luamitchell
2013-04-24Use `buffer.word_chars` for autocompleting words instead of a Lua pattern.mitchell
2013-04-24Changed display of highlighted words; modules/textadept/editing.luamitchell
Indicators are drawn under text and are not translucent anymore. Also, markers are no longer placed on lines.
2013-04-24Renamed `_G.buffer_new()` to `buffer.new()`.mitchell
2013-04-20Respect user-defined `keys[mode]['esc']`; modules/textadept/command_entry.luamitchell
2013-04-19Updated some documentation.mitchell
2013-04-19Added icon to About dialog; modules/textadept/menu.luamitchell
Requires gtdialog r56.
2013-04-15Function in `finish_mode()` is optional; modules/textadept/command_entry.luamitchell
2013-04-15Updated Windows curses key bindings; modules/textadept/keys.luamitchell
2013-04-12Updated to Scintilla 3.3.1.mitchell
2013-04-11Added key modes and changed the command entry to use them.mitchell
Removed obsoleted `events.COMMAND_ENTRY_COMMAND`.
2013-04-09Fixed bug with highlighting words; modules/textadept/editing.luamitchell
2013-04-03Textadept should support multiple curses platforms; remove ncurses references.mitchell
Requires Scintilla r4436 and Scinterm r45.
2013-03-31Added Less, Literal Coffeescript, and Sass lexers.mitchell
Thanks to Robert Gieseke.
2013-03-29Updated Lua Adeptsense.mitchell
2013-03-29Updated to Lua 5.2.2 and LPeg 0.11.mitchell