mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-10 06:39:01 +02:00
Avoid selecting next match when opening search form with no selected text (#28261)
If a setSearchQuery effect is dispatched but the search query hasn't changed, avoid selecting the next match in the editor. GitOrigin-RevId: 8b0dda2b6c9442796a030214a37da7e93f4901f4
This commit is contained in:
@@ -250,6 +250,11 @@ export const search = (initialSearchQuery: SearchQuery | null) => {
|
||||
const query = effect.value
|
||||
if (!query) return
|
||||
|
||||
const currentQuery = getSearchQuery(tr.startState)
|
||||
if (currentQuery === query) {
|
||||
return // avoiding selecting the next match when opening the search form with no selected text
|
||||
}
|
||||
|
||||
// The rest of this messes up searching in Vim, which is handled by
|
||||
// the Vim extension, so bail out here in Vim mode. Happily, the
|
||||
// Vim extension sticks an extra property on the query value that
|
||||
|
||||
Reference in New Issue
Block a user