Skip to content

Commit

Permalink
[goals] Enable find widget in goal panel
Browse files Browse the repository at this point in the history
Fixes #305

Signed-off-by: Ali Caglayan <alizter@gmail.com>

<!-- ps-id: e3066447-b19a-48c6-8222-3e15636591c8 -->
  • Loading branch information
ejgallego committed Feb 9, 2023
1 parent 71980e8 commit 4103738
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
user-configurable (by default 150) (@ejgallego, #303)
- Coq Markdown files (.mv extension) are now highlighted properly
using both Coq and Markdown syntax rules (@4ever2, #307)
- Goal view now supports find (@Alizter, #309, closes #305)

# coq-lsp 0.1.4: View
---------------------
Expand Down
2 changes: 1 addition & 1 deletion editor/code/src/goals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class InfoPanel {
}

panelFactory() {
let webviewOpts: WebviewOptions = { enableScripts: true };
let webviewOpts = { enableScripts: true, enableFindWidget: true };
this.panel = window.createWebviewPanel(
"goals",
"Goals",
Expand Down

0 comments on commit 4103738

Please sign in to comment.