silverbullet/web/cm_plugins/readonly.ts

8 lines
174 B
TypeScript

import { EditorState } from "@codemirror/state";
export function readonlyMode() {
return EditorState.changeFilter.of((tr): boolean => {
return !tr.docChanged;
});
}