Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | ||
2014-11-26 | Fixed bug in jumping to compile/run errors and clear annotations before builds. | ||
2014-11-26 | Allow connection to `events.QUIT` without requiring index of 1. | ||
2014-11-26 | Fixed documentation on terminal colors; doc/manual.md | ||
2014-11-25 | Change long line color in terminal version; themes/term.lua | ||
It was impossible to read text on a white background. | |||
2014-11-25 | Fixed bug when iterating over root directory; core/lfs_ext.lua | ||
Files returned had two leading slashes (//etc, //usr, etc.). | |||
2014-11-25 | Do not highlight the caret line in the command entry; properties.lua | ||
2014-11-25 | Include buffer constants in completions; modules/textadept/command_entry.lua | ||
2014-11-24 | Updated curses compatibility notes; doc/manual.md | ||
2014-11-24 | Use Bash syntax highlighting for "filter through" via the command entry. | ||
2014-11-24 | Keep command entry focus when window loses focus; src/textadept.c | ||
2014-11-24 | No need for a separate build dir for automated builds; src/Makefile | ||
2014-11-23 | Patch CDK for basic UTF-8 support. | ||
The find & replace pane and UI dialogs can now handle UTF-8 characters. The support is functional, but not perfect. Since the patch only targets the widgets Textadept uses, it cannot be submitted to upstream CDK for inclusion. It's kind of a hack anyway. | |||
2014-11-23 | File dialogs in the terminal should span the entire view; core/file_io.lua | ||
2014-11-22 | Small Makefile changes; src/Makefile | ||
2014-11-20 | Updated Scintilla patch to match upstream patch; src/scintilla.patch | ||
Upstream patch is in r5324 (changeset d17b39c9eb2a). | |||
2014-11-18 | Use labels in the statusbar instead of statusbar widgets; src/textadept.c | ||
This allows the docstatusbar to resize and align right. | |||
2014-11-15 | Fixed command entry reset bug now that the entry is a Scintilla buffer. | ||
2014-11-13 | Added Arabic translation. | ||
Thanks to Ahed Eid. | |||
2014-11-12 | Updated properties based on Scinterm updates. | ||
Requires Scinterm r118 (changeset 8a7943225c5a). | |||
2014-11-12 | Code and documentation cleanup. | ||
2014-11-11 | Added new `_SCINTILLA.next_image_type()` for registering images. | ||
2014-11-11 | Added keysym for Keypad Enter; core/keys.lua | ||
2014-11-09 | Patch Scintilla in order to allow custom line markers; src/scintilla.patch | ||
This is for drawing nearly all line markers as text in the terminal version. This patch is subject to change until Neil applies or modifies the upstream patch I sent. | |||
2014-11-08 | Patch Scintilla in order to allow custom wrap visuals; src/scintilla.patch | ||
This is for drawing wrap markers as text in the terminal version. This patch is subject to change until Neil applies or modifies the upstream patch I sent. | |||
2014-11-07 | Patch Scintilla in order to allow custom tab arrow drawing; src/scintilla.patch | ||
This is for drawing tab arrows as text in the terminal version. This patch is subject to change until Neil applies or modifies the upstream patch I sent. | |||
2014-11-06 | Fixed return values from `ui.dialogs.optionselect()`; core/ui.lua | ||
2014-11-06 | Use the current working directory in fileselect dialogs. | ||
This should have been committed long ago. | |||
2014-10-31 | Change rectangular selection mouse modifier back to Alt on Linux. | ||
Enabled tapping Alt key during mouse selection to convert to rectangular selection and mentioned this in the manual. | |||
2014-10-30 | Added `LINUX` and `BSD` platform flags for the sake of completeness. | ||
Previously, Linux was inferred from the expression `not WIN32 and not OSX`. |