Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-19 | Small code cleanup. | ||
2022-03-19 | Minor refactoring and code cleanup. | ||
Use table library for removing buffers and views from their respective registry tables, use | |||
2022-03-18 | Added `move_buffer()` function and made tabs rearrangeable via drag and drop. | ||
2022-02-28 | Use WinApi instead of GLib/GTK to read from single-instance pipe. | ||
For some reason, GTK 3 and its GLib cannot read from the pipe. | |||
2022-02-23 | Fixed `ui.update()` on macOS when monitoring output of spawned processes. | ||
Also removed unnecessary #if tests. | |||
2022-02-15 | Updated to Scintilla 5.2.0. | ||
2022-01-31 | Updated copyright year. | ||
2022-01-12 | Fixed menubar reset crash on macOS. | ||
Temporary workaround is to prevent changing the menubar after it is set. | |||
2021-12-02 | Reverted forward-looking change. | ||
This change should be the next version of Scintilla after 5.1.4. | |||
2021-11-29 | Updated to Scintilla 5.1.4. | ||
2021-10-20 | Ensure the terminal cursor is visible for Find and Replace. | ||
The latest Scinterm hg hides the cursor when the Scintilla caret is out of view. | |||
2021-07-27 | Attempt to work around autocompletion list not hiding when command entry ↵ | ||
hides on Windows. Ideally Scintilla would handle this properly, as this issue was introduced in a recent 5.x release. | |||
2021-05-29 | Updated to Scintilla 5.0.3. | ||
Updated themes to use new `view.element_color` and treat all colors as opaque if no alpha was given. | |||
2021-05-01 | Reverted printing initialization errors to stderr. | ||
2021-05-01 | Do not clobber user's terminal on initialization error. | ||
Also fix memory leak. | |||
2021-05-01 | Print initialization errors to stderr in addition to showing dialog. | ||
This can be helpful when running in a headless test environment. | |||
2021-04-16 | Added ability to specify find & replace pane entry font via ↵ | ||
`ui.find.entry_font`. Also use type checks when setting find & replace text and labels. | |||
2021-04-13 | Updated to Scintilla 5.0.1 and latest Scintillua and Scinterm. | ||
Some of the Scintilla API has changed, and by extension the Scintillua API. | |||
2021-04-11 | Initial pass reformatting all code. | ||
Use clang-format, LuaFormatter, and 100 character limit on lines. | |||
2021-02-13 | Take advantage of Scinterm being able to use a native terminal caret. | ||
Also change brace highlight style to not change the background color, as some terminal cursors invert the current cell, so this would cause the highlighted brace at the current position to "unhighlight", causing confusion. This requires latest Scinterm. | |||
2021-02-09 | Fixed curses compile error introduced in previous commit. | ||
2021-02-09 | Added `ui.SHOW_ALL_TABS` option for `ui.tabs`. | ||
Textadept hides the first tab by default since its information is duplicated in the titlebar and screen space is wasted. However, some users choose to hide titlebars (e.g. on window maximize/fullscreen), so this option now exists. | |||
2021-02-08 | Expose "lines_added" field for SCN_MODIFIED notifications. | ||
Note that connecting to `events.MODIFIED` is still intentionally undocumented. | |||
2021-01-29 | Updated copyright information. | ||
2020-11-16 | Added `events.UNFOCUS` for when Textadept loses focus. | ||
Do not emit this event when a dialog is active. | |||
2020-11-16 | Code cleanup. | ||
2020-11-16 | Keep focus on find & replace pane as necessary when refocusing window. | ||
2020-10-20 | Ensure command entry is defocused properly in the terminal version. | ||
Otherwise, autocompletion lists may not be canceled. | |||
2020-10-13 | Moved `ui.command_entry.active` into C. | ||
It's more reliable and is similar to `ui.find.active`. | |||
2020-10-04 | Collect garbage on reset. | ||
External modules that have finalizers (__gc metamethod) need to be run now, or else segfaults can occur when running the gc later with stale data. | |||
2020-09-29 | Updated copyright information. | ||
2020-09-19 | Added `events.COMMAND_TEXT_CHANGED`. | ||
This is analagous to `events.FIND_TEXT_CHANGED`. | |||
2020-09-19 | Added `ui.update()` for unit tests. | ||
2020-09-13 | Switch back to Scintilla default (4.x), Scinterm, and Scintillua. | ||
Scintilla LongTerm3 maintenance is ending with upcoming Scintilla 5. Textadept now requires a C++17 compiler. Also updated Docker image. | |||
2020-09-07 | Handle initial queries of `ui.find.find_text` and `repl_text` in curses. | ||
2020-09-07 | Fixed emission of `events.UPDATE_UI` when resuming from suspend. | ||
2020-09-07 | Added `ui.find.active` and prevent word highlighting when searching. | ||
Word auto-highlighting when searching is too distracting. | |||
2020-08-22 | Fixed crashes introduced by r2915. | ||
2020-08-22 | Only switch buffers during `buffer:delete()` if necessary. | ||
This is not necessary if deleting a non-visible buffer (e.g. in the dummy view). | |||
2020-08-20 | Fixed keypress handler regression when compiling with modern MinGW-w64. | ||
For some reason, modern MinGW-w64 GCC always returns boolean true unless compiling with debug symbols. Most typing into Scintilla widgets was not working at all. This does not occur on older versions of MinGW GCC. | |||
2020-08-17 | Updated some documentation and use macOS instead of Mac OSX. | ||
2020-08-09 | Fixed regression involving SCNotifications and text. | ||
This affects SCN_URIDROPPED among others. | |||
2020-08-08 | Updated find & replace pane key bindings. | ||
In the GUI, Enter and Shift+Enter invoke Find Next and Find Prev, respectively. In the terminal, Up, Down, and Tab toggle between buttons more consistently; removed Shift-Tab binding. Also fixed entry drawing issue with Tab. | |||
2020-07-29 | Once again removed accidencally committed changes. | ||
2020-07-28 | Updated for 11.0 alpha 3. | ||
2020-07-27 | Small code cleanup. | ||
2020-07-26 | Use monospaced font in the Find & Replace Pane entries. | ||
2020-07-25 | Find & Replace Pane now allows file filters to be specified for Find in Files. | ||
Also updated `ui.find.focus()` to accept an optional table of options (e.g. in_files, incremental, etc.) for convenience. | |||
2020-07-25 | Fixed initial setting of `ui.find.replace_entry_text` in the GUI. | ||
GtkEntries are initialized with the same initial text pointer, which makes it impossible to initially differentiate between `find_text` and `repl_text` by their text pointers alone. | |||
2020-07-25 | Fixed bug in incremental find in the terminal version. | ||
Also fixed a bug in setting `ui.find.replace_entry_text`. |