mirror of
https://github.com/delibae/claude-prism.git
synced 2026-08-28 05:14:59 +00:00
Merge pull request #153 from TimothyMerlin/fix/vim-selection-highlight
Reviewed: clean bugfix, adds drawSelection() for vim visual mode
This commit is contained in:
commit
17a9b3caaa
1 changed files with 2 additions and 0 deletions
|
|
@ -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(),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue