mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-26 03:59:55 +00:00
terminal: Fix supported search options (regex: true) (#7659)
Release Notes: - Fixes [#7327](https://github.com/zed-industries/zed/issues/7327).
This commit is contained in:
parent
67839a967b
commit
4f5fea5dba
1 changed files with 1 additions and 1 deletions
|
@ -874,7 +874,7 @@ impl SearchableItem for TerminalView {
|
||||||
SearchOptions {
|
SearchOptions {
|
||||||
case: false,
|
case: false,
|
||||||
word: false,
|
word: false,
|
||||||
regex: false,
|
regex: true,
|
||||||
replacement: false,
|
replacement: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue