Jump to search result while typing in debuglog viewer.

This commit is contained in:
Greyson Parrelli
2025-08-14 16:11:19 -04:00
parent 0d596af187
commit 939dcc9295

View File

@@ -151,6 +151,13 @@ function onToggleCaseSensitive() {
function onSearchInput(value) { function onSearchInput(value) {
input = value; input = value;
highlightAllMatches(input);
editor.find(input, {
backwards: false,
wrap: true,
skipCurrent: false,
caseSensitive: isCaseSensitive,
});
} }
function onSearch() { function onSearch() {