[cm6] Display non-standard spaces as special chars (#12927)

* [cm6] Display non-standard spaces as special chars

* specialChar background color

* removed Ideographic Space

* fix: lint error

* added Ideographic Space

* display only for source editor

GitOrigin-RevId: d94942cdc6a0aa17045b1783ac95de601f6ae15a
This commit is contained in:
Domagoj Kriskovic 2023-05-05 10:40:30 +02:00 committed by Copybot
parent b1929cf16d
commit 27ffe1c814
2 changed files with 15 additions and 2 deletions

View file

@ -42,7 +42,7 @@ import { emptyLineFiller } from './empty-line-filler'
import { goToLinePanel } from './go-to-line'
import { parserWatcher } from './wait-for-parser'
import { drawSelection } from './draw-selection'
import { visual } from './visual/visual'
import { sourceOnly, visual } from './visual/visual'
import { scrollOneLine } from './scroll-one-line'
import { foldingKeymap } from './folding-keymap'
import { inlineBackground } from './inline-background'
@ -74,7 +74,16 @@ const moduleExtensions: Array<() => Extension> = importOverleafModules(
export const createExtensions = (options: Record<string, any>): Extension[] => [
lineNumbers(),
highlightSpecialChars(),
sourceOnly(
false,
highlightSpecialChars({
addSpecialChars: new RegExp(
// non standard space characters (https://jkorpela.fi/chars/spaces.html)
'[\u00A0\u1680\u180E\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u200B\u202F\u205F\u3000\uFEFF]',
/x/.unicode != null ? 'gu' : 'g'
),
})
),
history({ newGroupDelay: 250 }),
foldGutter({
openText: '▾',

View file

@ -123,6 +123,10 @@ const baseTheme = EditorView.baseTheme({
background: 'none',
},
},
'.cm-specialChar': {
color: 'red',
backgroundColor: 'rgba(255, 0, 0, 0.1)',
},
'.cm-widgetBuffer': {
height: '1.3em',
},