aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-01-29Removed language-specific context menus.mitchell
Editing `textadept.menu.context_menu` directly is good enough.
2015-01-22Small code and documentation cleanup.mitchell
2015-01-22Made `args.process()` private.mitchell
2015-01-21Added tag textadept_7.8_beta_3 for changeset a8d15d14da75mitchell
2015-01-20Updated CHANGELOG.md.mitchell
2015-01-20Check for modified files after resuming from suspend; core/file_io.luamitchell
2015-01-20Updated Lua autocompletion and documentation.mitchell
2015-01-20Updated for 7.8 beta 3.mitchell
2015-01-20Updated to Scintillua 3.5.3-1; src/Makefilemitchell
2015-01-20Fixed bug in preventing standard focus out events to be fired; src/textadept.cmitchell
It is desirable to keep the command entry visible if the window is losing focus. Otherwise, allow normal focus out events to be fired, including Scintilla's defaults that hide the cursor, etc.
2015-01-20Code cleanup; src/textadept.cmitchell
2015-01-20Updated to Scintilla 3.5.3.mitchell
2015-01-20Fixed horizontal expand flag for Find & Replace widgets in GTK3; src/textadept.cmitchell
2015-01-15Added events for terminal suspend and resume.mitchell
Suspend can be prevented by an error handler, described in a new FAQ entry. New `events.RESUME` replaces `events.FOCUS` for the terminal version. Utilize these events to disable/enable bracketed paste and mouse modes.
2015-01-15Fix opening network path files on Win32.mitchell
Thanks to Daniel Wutke.
2015-01-15Restore ^Z as undo if terminal suspend is disabled; modules/textadept/keys.luamitchell
2015-01-15Added filetypes for vCard and Texinfo lexers; modules/textadept/file_types.luamitchell
Requires Scintillua r463 (changeset dab8ec9733ec).
2015-01-12Emit an `events.FOCUS` event after resuming from a suspended state.mitchell
2015-01-12Fixed bug in reporting split views in GTK3; src/textadept.cmitchell
2015-01-10Added tag textadept_7.8_beta_2 for changeset dba28d4bbe65mitchell
2015-01-10Updated CHANGELOG.md.mitchell
2015-01-09Updated Lua autocompletion and documentation.mitchell
2015-01-09Updated for 7.8 beta 2.mitchell
2015-01-09Updated to latest scintillua, scinterm, lspawn, and gtdialog; src/Makefilemitchell
The last beta used snapshots.
2015-01-05Disable scrollbar in Mac OSX terminal version for real; properties.luamitchell
The change in revision 1900 did not work because `OSX` is only set in the GUI version on Mac OSX. Terminal.app does not render correctly when vertical scroll bars are enabled.
2015-01-03Fixed LuaDoc; core/init.luamitchell
The newly documented `spawn_proc:close()` function requires lspawn changeset 30:613c71d29856.
2014-12-31Updated copyright year.mitchell
2014-12-31Disable scrollbar in Mac OSX terminal version; properties.luamitchell
Terminal.app does not render it correctly.
2014-12-24Added Makefile rule to generate ctags; src/Makefilemitchell
2014-12-24Patched Scintilla to fix curses margin intersection; src/scintilla.patchmitchell
Clicking on the first character in a line caused Scintilla to think the line's margin was clicked, incorrectly selecting the entire line.
2014-12-24Small code and documentation cleanup.mitchell
2014-12-24Fixed C module's ctag autocompletion and utilize project or directory tags.mitchell
Includes the current project's top-level tags file or the current directory's tags file automatically. That file does not need to be added to `_M.ansi_c.tags`.
2014-12-23Enable suspend in the terminal version.mitchell
Patch libtermkey to allow this and also to support mouse enabling/disabling. Needed to change ^Z undo to M-Z and added M-S-Z as extra redo.
2014-12-17Fixed curses bug with toggling find options via API; src/textadept.cmitchell
2014-12-17Fix CDK warning; src/cdk.patchmitchell
2014-12-16Updated Luadoc; core/.buffer.luadocmitchell
2014-12-12Removed unused variable; src/Makefilemitchell
2014-12-09Updated to Scintilla 3.5.2.mitchell
2014-12-01Added tag textadept_7.8_beta for changeset 966fad09c4aamitchell
2014-11-30Updated CHANGELOG.md.mitchell
2014-11-30Show command entry call tips above it; modules/textadept/command_entry.luamitchell
2014-11-30Patch Scintilla to sometimes prevent call tip repositioning; src/scintilla.patchmitchell
When the call tip is smaller than the window (such as the command entry), keep existing position in order to keep the call tip from appearing in front of buffer text.
2014-11-30Updated Lua autocompletion and documentation.mitchell
2014-11-30Updated for 7.8 beta.mitchell
2014-11-30Show character info with lexer and style call tip; modules/textadept/keys.luamitchell
Added binding for the terminal version.
2014-11-30Added UTF-8 input mode for OSX and curses; modules/textadept/keys.luamitchell
2014-11-29Fixed command entry reset bug for real instead of in r1861.mitchell
2014-11-29Show symbol documentation in the Lua command entry; modules/textadept/keys.luamitchell
2014-11-27Small code cleanup.mitchell
2014-11-26Integrated Chris Emerson's curses split view window manager.mitchell