I have the basicSetup extension where search is included, however it dons not work when the EditorView has a property of EditorView.editable.of(false) (the panel does not show when Ctrl+f is pressed).
Is there a way to show the search panel even though the document is read only?
By default, you cannot focus an uneditable element, so no keyboard events are delivered to the editor. You can either listen for keys on another target, such as the window, or add an EditorView.contentAttributes.of({tabindex: 0}) extension to make the editor focusable without being editable.