Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-04 | Moved all top-level .md files into docs/ except README.md. | ||
Also fixed lack of header anchors in generated HTML. | |||
2020-09-04 | Renamed doc/ to docs/ and removed bombay dependency. | ||
Added some documentation infrastructure for eventual migration to a new build service. Use a simple Lua script for generating documentation offline. | |||
2020-09-04 | Added support for building with Docker and dropped automated Linux i386 builds. | ||
Also tweaked Makefile with basic git support for an eventual migration to a new build service. | |||
2020-09-04 | Small code cleanup. | ||
2020-09-02 | First scroll find results into view, then vertically center the caret. | ||
Otherwise, find results on long lines will not be displayed. | |||
2020-08-27 | Updated `ui.find.FIND_INDIC` style. | ||
2020-08-27 | Disable `ui.find.highlight_all_matches` by default. | ||
It can be difficult to see what the current result is. | |||
2020-08-27 | Small manual updates. | ||
2020-08-27 | Fixed restoring find & replace pane's replace text outside of "Find in Files". | ||
2020-08-25 | Manual updates. | ||
2020-08-23 | Added "Edit > Preferences" menu item and key binding for opening user init.lua. | ||
Also changed the mnemonic for "Edit > Filter Through" in the process. | |||
2020-08-23 | Fixed bug where jumping to a find in files result of length 1 highlights wrong. | ||
2020-08-23 | Updated to latest Scintilla to get some fixes for crashes. | ||
These crashes occur when indexing Scintilla fields with out-of-bounds indices. | |||
2020-08-23 | Document terminal color restrictions in Lua API, not the Manual. | ||
2020-08-22 | Fixed some issues with r2916 discovered when running tests. | ||
2020-08-22 | Fixed crashes introduced by r2915. | ||
2020-08-22 | Improve handling of print buffers and splits. | ||
Always split a single view if `ui.tabs` is `false` and prefer another split view if switching to an existing print buffer. | |||
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-22 | Do not remove initial 'Untitled' buffer during `ui._print()`. | ||
I am not sure why this has been the case. | |||
2020-08-22 | Added `ui.command_entry.active` and fixed bugs in `events.KEYPRESS` handlers. | ||
2020-08-22 | Updated to latest gtDialog to prevent Escape from being disabled for dialogs. | ||
2020-08-21 | Code cleanup. | ||
2020-08-21 | Added `keys.KEYSYMS` representations to LuaDoc. | ||
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-20 | Show "Match X/Y" in statusbar when searching for text. | ||
2020-08-20 | Do not accidentally activate "auto enclose" with some symbol keybindings. | ||
2020-08-20 | Prevent infinite loops when highlighting found text. | ||
2020-08-18 | Use "terminal version" instead of "curses" for more consistency. | ||
2020-08-18 | Center the caret vertically for find results. | ||
Iterating through find results seems a bit more intuitive. Also, for small views the scrolling was way too disorienting. | |||
2020-08-17 | Update to latest gtDialog to fix GTK3 compile error. | ||
2020-08-17 | Initial rewrite of the Manual and updated README. | ||
2020-08-17 | Small code cleanup. | ||
2020-08-17 | Fixed fold toggling when on lines that are headers. | ||
2020-08-17 | Added `textadept.editing.auto_enclose` for auto-enclosing selected text. | ||
2020-08-17 | Small code cleanup. | ||
2020-08-17 | Exclude Fossil version control directory in default filter. | ||
2020-08-17 | Lua code formatting. | ||
2020-08-17 | Updated some documentation and use macOS instead of Mac OSX. | ||
2020-08-16 | Fixed a bug where filter text could always be put in the "Replace" entry. | ||
This happened when you activated "Find in Files" twice in a row. | |||
2020-08-14 | Describe changes in patch files. | ||
2020-08-10 | Updated LuaDoc. | ||
2020-08-10 | "View > Toggle Fold" toggles folding for the current block, regardless of line. | ||
Previously, you had to be on a line that was a fold point. | |||
2020-08-10 | Removed "View EOL" buffer setting. | ||
2020-08-09 | Fixed regression involving SCNotifications and text. | ||
This affects SCN_URIDROPPED among others. | |||
2020-08-09 | Save the current working directory to session files. | ||
2020-08-09 | When passing a directory as a command line argument, change to it. | ||
This allows for running `textadept [projectdir]` and having the open dialogs start from there instead of `_HOME` or some other directory. | |||
2020-08-08 | Removed "View EOL" menu item and key binding. | ||
It does not seem necessary anymore. | |||
2020-08-08 | Use comma-separated patterns in find & replace pane's "Filter" field. | ||
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-08-04 | Try to avoid using `lexer` as a string, as it overshadows the `lexer` module. | ||