Skip to content

Instantly share code, notes, and snippets.

@KMR-zoar
Created March 28, 2019 08:20
Show Gist options
  • Save KMR-zoar/8286790fdd50c5d436f9db3f23cdadd8 to your computer and use it in GitHub Desktop.
Save KMR-zoar/8286790fdd50c5d436f9db3f23cdadd8 to your computer and use it in GitHub Desktop.
simpleMatch for Brackets
import CodeMirror from 'codemirror'
CodeMirror.defineMode('law', () => {
return {
token: (stream, state) => {
const inBrackets = stream.match(/(.*?)/)
if (inBrackets) {
return 'keyword'
}
stream.next()
return null
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment