Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-01-29 | Removed language-specific context menus. | ||
Editing `textadept.menu.context_menu` directly is good enough. | |||
2015-01-22 | Small code and documentation cleanup. | ||
2015-01-22 | Made `args.process()` private. | ||
2015-01-21 | Added tag textadept_7.8_beta_3 for changeset a8d15d14da75 | ||
2015-01-20 | Updated CHANGELOG.md. | ||
2015-01-20 | Check for modified files after resuming from suspend; core/file_io.lua | ||
2015-01-20 | Updated Lua autocompletion and documentation. | ||
2015-01-20 | Updated for 7.8 beta 3. | ||
2015-01-20 | Updated to Scintillua 3.5.3-1; src/Makefile | ||
2015-01-20 | Fixed bug in preventing standard focus out events to be fired; src/textadept.c | ||
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-20 | Code cleanup; src/textadept.c | ||
2015-01-20 | Updated to Scintilla 3.5.3. | ||
2015-01-20 | Fixed horizontal expand flag for Find & Replace widgets in GTK3; src/textadept.c | ||
2015-01-15 | Added events for terminal suspend and resume. | ||
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-15 | Fix opening network path files on Win32. | ||
Thanks to Daniel Wutke. | |||
2015-01-15 | Restore ^Z as undo if terminal suspend is disabled; modules/textadept/keys.lua | ||
2015-01-15 | Added filetypes for vCard and Texinfo lexers; modules/textadept/file_types.lua | ||
Requires Scintillua r463 (changeset dab8ec9733ec). | |||
2015-01-12 | Emit an `events.FOCUS` event after resuming from a suspended state. | ||
2015-01-12 | Fixed bug in reporting split views in GTK3; src/textadept.c | ||
2015-01-10 | Added tag textadept_7.8_beta_2 for changeset dba28d4bbe65 | ||
2015-01-10 | Updated CHANGELOG.md. | ||
2015-01-09 | Updated Lua autocompletion and documentation. | ||
2015-01-09 | Updated for 7.8 beta 2. | ||
2015-01-09 | Updated to latest scintillua, scinterm, lspawn, and gtdialog; src/Makefile | ||
The last beta used snapshots. | |||
2015-01-05 | Disable scrollbar in Mac OSX terminal version for real; properties.lua | ||
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-03 | Fixed LuaDoc; core/init.lua | ||
The newly documented `spawn_proc:close()` function requires lspawn changeset 30:613c71d29856. | |||
2014-12-31 | Updated copyright year. | ||
2014-12-31 | Disable scrollbar in Mac OSX terminal version; properties.lua | ||
Terminal.app does not render it correctly. | |||
2014-12-24 | Added Makefile rule to generate ctags; src/Makefile | ||
2014-12-24 | Patched Scintilla to fix curses margin intersection; src/scintilla.patch | ||
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-24 | Small code and documentation cleanup. | ||
2014-12-24 | Fixed C module's ctag autocompletion and utilize project or directory tags. | ||
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-23 | Enable suspend in the terminal version. | ||
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-17 | Fixed curses bug with toggling find options via API; src/textadept.c | ||
2014-12-17 | Fix CDK warning; src/cdk.patch | ||
2014-12-16 | Updated Luadoc; core/.buffer.luadoc | ||
2014-12-12 | Removed unused variable; src/Makefile | ||
2014-12-09 | Updated to Scintilla 3.5.2. | ||
2014-12-01 | Added tag textadept_7.8_beta for changeset 966fad09c4aa | ||
2014-11-30 | Updated CHANGELOG.md. | ||
2014-11-30 | Show command entry call tips above it; modules/textadept/command_entry.lua | ||
2014-11-30 | Patch Scintilla to sometimes prevent call tip repositioning; src/scintilla.patch | ||
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-30 | Updated Lua autocompletion and documentation. | ||
2014-11-30 | Updated for 7.8 beta. | ||
2014-11-30 | Show character info with lexer and style call tip; modules/textadept/keys.lua | ||
Added binding for the terminal version. | |||
2014-11-30 | Added UTF-8 input mode for OSX and curses; modules/textadept/keys.lua | ||
2014-11-29 | Fixed command entry reset bug for real instead of in r1861. | ||
2014-11-29 | Show symbol documentation in the Lua command entry; modules/textadept/keys.lua | ||
2014-11-27 | Small code cleanup. | ||
2014-11-26 | Integrated Chris Emerson's curses split view window manager. | ||