mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-01 13:52:24 -05:00
[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:
parent
b1929cf16d
commit
27ffe1c814
2 changed files with 15 additions and 2 deletions
|
@ -42,7 +42,7 @@ import { emptyLineFiller } from './empty-line-filler'
|
||||||
import { goToLinePanel } from './go-to-line'
|
import { goToLinePanel } from './go-to-line'
|
||||||
import { parserWatcher } from './wait-for-parser'
|
import { parserWatcher } from './wait-for-parser'
|
||||||
import { drawSelection } from './draw-selection'
|
import { drawSelection } from './draw-selection'
|
||||||
import { visual } from './visual/visual'
|
import { sourceOnly, visual } from './visual/visual'
|
||||||
import { scrollOneLine } from './scroll-one-line'
|
import { scrollOneLine } from './scroll-one-line'
|
||||||
import { foldingKeymap } from './folding-keymap'
|
import { foldingKeymap } from './folding-keymap'
|
||||||
import { inlineBackground } from './inline-background'
|
import { inlineBackground } from './inline-background'
|
||||||
|
@ -74,7 +74,16 @@ const moduleExtensions: Array<() => Extension> = importOverleafModules(
|
||||||
|
|
||||||
export const createExtensions = (options: Record<string, any>): Extension[] => [
|
export const createExtensions = (options: Record<string, any>): Extension[] => [
|
||||||
lineNumbers(),
|
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 }),
|
history({ newGroupDelay: 250 }),
|
||||||
foldGutter({
|
foldGutter({
|
||||||
openText: '▾',
|
openText: '▾',
|
||||||
|
|
|
@ -123,6 +123,10 @@ const baseTheme = EditorView.baseTheme({
|
||||||
background: 'none',
|
background: 'none',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
'.cm-specialChar': {
|
||||||
|
color: 'red',
|
||||||
|
backgroundColor: 'rgba(255, 0, 0, 0.1)',
|
||||||
|
},
|
||||||
'.cm-widgetBuffer': {
|
'.cm-widgetBuffer': {
|
||||||
height: '1.3em',
|
height: '1.3em',
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue