@codemirror/search
Advanced tools
Comparing version 6.5.3 to 6.5.4
@@ -0,1 +1,7 @@ | ||
## 6.5.4 (2023-09-20) | ||
### Bug fixes | ||
Fix a bug that caused whole-word search to incorrectly check for word boundaries in some circumstances. | ||
## 6.5.3 (2023-09-14) | ||
@@ -2,0 +8,0 @@ |
@@ -121,3 +121,3 @@ import { showPanel, EditorView, getPanel, Decoration, ViewPlugin, runScopeHandlers } from '@codemirror/view'; | ||
} | ||
if (match && this.test && !this.test(match.from, match.to, this.buffer, this.bufferPos)) | ||
if (match && this.test && !this.test(match.from, match.to, this.buffer, this.bufferStart)) | ||
match = null; | ||
@@ -124,0 +124,0 @@ return match; |
{ | ||
"name": "@codemirror/search", | ||
"version": "6.5.3", | ||
"version": "6.5.4", | ||
"description": "Search functionality for the CodeMirror code editor", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
131755