A CodeMirror mode for the Chapel language
npm install codemirror codemirror-mode-chapel --save
-
Include
codemirror-mode-chapel
into your project.<!-- You can simply add codemirror-mode-chapel/index.js as a script tag: --> <script src="js/codemirror.js"></script> <script src="js/codemirror-mode-chapel/index.js"></script>
or
// If you're using frontend build tools like Webpack and Babel, // you can simply import the module and register the mode: import CodeMirror from 'codemirror' import registerChapelMode from 'codemirror-mode-chapel'
-
Set 'text/chapel' as the mode when creating the CodeMirror editor.
CodeMirror.fromTextArea(document.getElementById('code'), { mode: 'text/chapel' })
ISC
Created by Krishna Kumar Dey