diff --git a/apps/desktop/src/components/workspace/editor/latex-editor.tsx b/apps/desktop/src/components/workspace/editor/latex-editor.tsx index b097a31..c4ea71d 100644 --- a/apps/desktop/src/components/workspace/editor/latex-editor.tsx +++ b/apps/desktop/src/components/workspace/editor/latex-editor.tsx @@ -2,6 +2,7 @@ import { useCallback, useEffect, useRef, useState, useMemo } from "react"; import { Compartment, EditorState, Prec, Transaction } from "@codemirror/state"; import { EditorView, + drawSelection, keymap, lineNumbers, highlightActiveLine, @@ -620,6 +621,7 @@ export function LatexEditor() { extensions: [ compileKeymap, lineNumbers(), + drawSelection(), highlightActiveLine(), highlightActiveLineGutter(), history(),