added <> for mininotation

This commit is contained in:
eefano 2024-02-22 23:35:00 +01:00
parent f54aa3d823
commit 8af40a9c61
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ import { persistentAtom } from '@nanostores/persistent';
const extensions = {
isLineWrappingEnabled: (on) => (on ? EditorView.lineWrapping : []),
isBracketMatchingEnabled: (on) => (on ? bracketMatching() : []),
isBracketMatchingEnabled: (on) => (on ? bracketMatching({brackets: "()[]{}<>"}) : []),
isLineNumbersDisplayed: (on) => (on ? lineNumbers() : []),
theme,
isAutoCompletionEnabled,

View File

@ -67,5 +67,5 @@
#code .cm-matchingBracket {
text-decoration: underline 0.18rem;
text-underline-offset: 0.25rem;
text-underline-offset: 0.22rem;
}