aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-12Ensure _XOPEN_SOURCE_EXTENDED is defined for Linux ncurses; src/Makefilemitchell
2013-05-09Added notes on compiling the Win32 terminal version; doc/12_Compiling.mdmitchell
2013-05-01Fixed bug in file encodings; core/file_io.luamitchell
This fix was repackaged into 6.6 beta.
2013-04-30Added tag textadept_6.6_beta for changeset a931a4c8cb27mitchell
2013-04-30Word highlighting is supported in curses; doc/06_AdeptEditing.mdmitchell
2013-04-30Updated CHANGELOG.md.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-30Renamed `io.try_encodings` to `io.encodings`; core/file_io.luamitchell
Also refactored encoding detection.
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-27Updated manual images.mitchell
2013-04-27Updated for 6.6 beta.mitchell
2013-04-26Fixed compilation error for CDK on Mac OSX.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 `handlers` table from the API; core/events.luamitchell
2013-04-24Hide `menubar` and `contextmenu` tables from the API; modules/textadept/menu.luamitchell
2013-04-24Do not emit keys while the command entry completion is active; src/textadept.cmitchell
The GtkEntryCompletion's key handler should take precedence over GtkEntry's.
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-21Fixed compilation error for latest Scinterm; src/Makefilemitchell
Requires Scinterm r51.
2013-04-21Updates to compile with latest GTK-OSX.mitchell
This fixes Fn key recognition.
2013-04-20Respect user-defined `keys[mode]['esc']`; modules/textadept/command_entry.luamitchell
2013-04-19Updated some documentation.mitchell
2013-04-19Modified some CDK code for Win32 curses; doc/12_Compiling.mdmitchell
2013-04-19Added icon to About dialog; modules/textadept/menu.luamitchell
Requires gtdialog r56.
2013-04-17Inline LuaJIT compatibility since it is mostly compatible with Lua 5.2.mitchell
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-15Allow updating of curses command entry text from events; src/textadept.cmitchell
2013-04-15Better key handling in Windows curses; src/textadept.cmitchell
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-08Make "command_entry_keypress" event more consistent with "keypress" in curses.mitchell
2013-04-08Reduce the delay when pressing the Escape key in curses; src/textadept.cmitchell
2013-04-06Update terminal color definitions.mitchell
Requires Scinterm r47.
2013-04-05Initial support for Windows terminal via pdcurses.mitchell
2013-04-04Support retina displays on OSX.mitchell
Thanks to John Benediktsson.
2013-04-03Textadept should support multiple curses platforms; remove ncurses references.mitchell
Requires Scintilla r4436 and Scinterm r45.