codemirror-mode-chapel
Version:
A Codemirror mode for Chapel Language
44 lines (29 loc) • 1.08 kB
Markdown
> A CodeMirror mode for the Chapel language
[](https://www.npmjs.com/package/codemirror-mode-chapel)
```console
npm install codemirror codemirror-mode-chapel --save
```
1. Include `codemirror-mode-chapel` into your project.
```html
<!-- 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
```js
// 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'
```
1. Set 'text/chapel' as the mode when creating the CodeMirror editor.
```js
CodeMirror.fromTextArea(document.getElementById('code'), { mode: 'text/chapel' })
```
ISC
Created by [Krishna Kumar Dey](https://github.com/krishnadey30/)