Allow buffer search in project search (#23819)
Closes #13437 Closes #19993 Release Notes: - Allow searching within the results of a project search - vim: Fix `/`/`?`, `n`/`N`, `gn`/`gN`,`*`/`#` in project search results --------- Co-authored-by: Nico <nico.lehmann@gmail.com>
This commit is contained in:
@@ -1148,11 +1148,12 @@ impl SearchableItem for LspLogView {
|
||||
) {
|
||||
// Since LSP Log is read-only, it doesn't make sense to support replace operation.
|
||||
}
|
||||
fn supported_options() -> workspace::searchable::SearchOptions {
|
||||
fn supported_options(&self) -> workspace::searchable::SearchOptions {
|
||||
workspace::searchable::SearchOptions {
|
||||
case: true,
|
||||
word: true,
|
||||
regex: true,
|
||||
find_in_results: false,
|
||||
// LSP log is read-only.
|
||||
replacement: false,
|
||||
selection: false,
|
||||
|
||||
Reference in New Issue
Block a user