Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Iterating through find results seems a bit more intuitive. Also, for small views
the scrolling was way too disorienting.
|
|
|
|
|
|
|
|
|
|
|
|
This happened when you activated "Find in Files" twice in a row.
|
|
|
|
Previously, you had to be on a line that was a fold point.
|
|
|
|
It does not seem necessary anymore.
|
|
|
|
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.
|
|
|
|
|
|
This is good practice.
|
|
|
|
|
|
|
|
|
|
|
|
If no project is found, and a folder other than the initial one is selected,
the filter stored for that directory should still be shown if the user wants
to Find in Files again from the same initial directory.
|
|
|
|
This is a legacy feature for when multi-language lexers did not backtrack to
keep track of what the current language is.
|
|
|
|
Also updated `ui.find.focus()` to accept an optional table of options (e.g.
in_files, incremental, etc.) for convenience.
|
|
Also fixed a bug in setting `ui.find.replace_entry_text`.
|
|
Also fixed `HIGHLIGHT_SELECTED` behavior with non-word selections.
|
|
Added new `events.FIND_TEXT_CHANGED` to help facilitate this.
"Whole word" and "Regex" are now supported in addition to "Match case".
Also updated tests.
|
|
This option is independent of `ui.highlight_words`.
|
|
Highlighting the current word could be useful instead of just the selected word.
|
|
|
|
It is possible to have in a non-current view a buffer without saved selection
data.
|
|
|
|
This supercedes `textadept.editing.highlight_word()`, which has been removed.
Changed the color of word highlights in themes.
|
|
|
|
Line number strings need to be converted to numbers.
|
|
Sequences are key strings, commands are Lua functions, and bindings are commands assigned to sequences.
|
|
|
|
|
|
|