MCPcopy Create free account
hub / github.com/UNLINEARITY/Obsidian-CodeSpace / getQuery

Method getQuery

src/code_view.ts:215–223  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

213 }
214
215 private getQuery(): SearchQuery {
216 return new SearchQuery({
217 search: this.searchInput.value,
218 caseSensitive: this.caseSensitiveBtn.hasClass("active"),
219 regexp: this.regexpBtn.hasClass("active"),
220 wholeWord: this.wholeWordBtn.hasClass("active"),
221 replace: this.replaceInput.value
222 });
223 }
224
225 private doSearch() {
226 const query = this.getQuery();

Callers 5

doSearchMethod · 0.95
findNextMethod · 0.95
findPreviousMethod · 0.95
replaceMethod · 0.95
replaceAllMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected