Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-25 | Added option to highlight all occurrences of found text. | ||
This option is independent of `ui.highlight_words`. | |||
2020-07-19 | Make `ui.highlight_words` a multi-option setting. | ||
Highlighting the current word could be useful instead of just the selected word. | |||
2020-07-16 | Minor LuaDoc updates and spelling corrections. | ||
2020-07-16 | Ensure buffer selection session data is saved. | ||
It is possible to have in a non-current view a buffer without saved selection data. | |||
2020-07-14 | Renamed `textadept.editing.block_comment()` to `toggle_comment()`. | ||
2020-07-13 | Auto-highlight all occurrences of selected words and find results. | ||
This supercedes `textadept.editing.highlight_word()`, which has been removed. Changed the color of word highlights in themes. | |||
2020-07-12 | Made `ui.find.goto_file_found()` and `textadept.run.goto_error()` args optional. | ||
2020-07-12 | Fixed --line command line switch. | ||
Line number strings need to be converted to numbers. | |||
2020-07-12 | Be more consistent with "key sequences", "key commands", and "key bindings". | ||
Sequences are key strings, commands are Lua functions, and bindings are commands assigned to sequences. | |||
2020-07-12 | Updated macro record to use new modifier keys. | ||
2020-07-09 | Fixed display of API documentation in the command entry. | ||
2020-07-04 | Added `buffer:style_of_name()` as an analogue to `buffer:name_of_style()`. | ||
2020-07-03 | Added support for Fennel. | ||
Thanks to Momohime Honda. | |||
2020-07-01 | Only save before compile/run if the buffer has been modified. | ||
Auto-saving interferes with commands that read file modification times. | |||
2020-06-28 | Updated Lua autocompletion and documentation. | ||
2020-06-28 | Be more consistent with Command key variable name. | ||
2020-06-28 | Changed keybinding modifier keys. | ||
They had always been a bit counter-intuitive. | |||
2020-06-10 | Renamed some buffer/view fields to use American English instead of Australian. | ||
This requires theme updates, primarily due to colour -> color. | |||
2020-06-10 | Replaced `lfs.dir_foreach()` with `lfs.walk()` generator. | ||
2020-06-09 | Prefer `view.call_tip_*` instead of `buffer.call_tip_*`. | ||
2020-06-08 | Prefer `view.property*` instead of `buffer.property*`. | ||
2020-06-05 | Renamed `buffer:set_theme()` to `view:set_theme()` and fixed a bug with splits. | ||
Also improved separate themes-per-view functionality. | |||
2020-05-26 | Fixed undocumented regression with word completion and case sensitivity. | ||
This feature was inadvertently removed during a refactor. | |||
2020-05-26 | Small code cleanup. | ||
2020-05-26 | Updated to latest Scintilla with ability to get style number from name. | ||
2020-05-25 | Allow views to be used as buffers and update API. | ||
This allows for a superficial separation of buffer- and view-specific Scintilla functionality. buffers and views can now be used interchangeably for the most part, and the APIs are guidance, not hard requirements. User scripts do not require any modification and will continue to function normally. | |||
2020-05-24 | Restore prior key mode after running the command entry. | ||
2020-05-24 | Updated tests for recent command entry history change. | ||
2020-05-03 | `textadept.editing.highlight_word()` highlights whole words based on context. | ||
2020-04-29 | When running the command entry, initially show the mode's prior text. | ||
This was the previous behavior, but did not distinguish between modes. | |||
2020-04-01 | Reverted accidental commit. | ||
2020-03-31 | Updated Lua autocompletion and documentation. | ||
Filepaths have a "_HOME" prefix that is expected to be filled in by consumers (e.g. the experimental ctags module). | |||
2020-03-30 | Fixed off-by-one issues with `buffer:get_cur_line()`. | ||
2020-03-29 | Code reformatting. | ||
2020-03-26 | Removed extra sets of () around some buffer function calls. | ||
The Scintilla iface was changed to not return a second string length value. | |||
2020-03-26 | Switched to 1-based indices for buffer positions, lines, and countable entities. | ||
2020-03-22 | Use the statusbar to indicate an active snippet. | ||
This helps avoid disorienting jumps when the user is not aware a snippet is still active. | |||
2020-03-18 | Added `ui.dialogs.progressbar()` and utilize it with Find in Files. | ||
2020-03-17 | Added per-mode command entry history. | ||
2020-03-17 | Align block comments by column if possible, not indent. | ||
2020-03-17 | Show XPM images in Lua command entry completions. | ||
2020-03-16 | Moved individual buffer functions in `io` into `buffer`. | ||
e.g. `io.reload_buffer()` was renamed `buffer:reload()`. | |||
2020-03-16 | Language modules should assume `_G.snippets` exists. | ||
2020-03-16 | Renamed `keys.MODE` to `keys.mode`. | ||
2020-03-16 | Use a default width for `ui.dialogs.filteredlist` dialogs. | ||
Experience has shown a vast majority of filteredlist dialogs need to be wide. Use a standard width that needs to be overridden rather than remembered. | |||
2020-03-16 | Small documentation update. | ||
2020-03-16 | Detect and allow jumping to internal Lua errors. | ||
2020-03-16 | Small code cleanup. | ||
2020-03-14 | More code cleanup, refactoring, and reformatting. | ||
2020-03-13 | More code cleanup and refactoring. | ||