├── .eslintrc.json ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── keymaps └── language-circuitpython.json ├── lib ├── atom-serialport.js ├── board-view.js ├── language-circuitpython.js ├── parser-delay.js └── plotter-view.js ├── menus └── language-circuitpython.json ├── package.json ├── spec └── language-circuitpython-spec.js └── styles └── language-circuitpython.less /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/language-circuitpython.json: -------------------------------------------------------------------------------- 1 | { 2 | "atom-workspace": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /lib/atom-serialport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/lib/atom-serialport.js -------------------------------------------------------------------------------- /lib/board-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/lib/board-view.js -------------------------------------------------------------------------------- /lib/language-circuitpython.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/lib/language-circuitpython.js -------------------------------------------------------------------------------- /lib/parser-delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/lib/parser-delay.js -------------------------------------------------------------------------------- /lib/plotter-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/lib/plotter-view.js -------------------------------------------------------------------------------- /menus/language-circuitpython.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/menus/language-circuitpython.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/package.json -------------------------------------------------------------------------------- /spec/language-circuitpython-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/spec/language-circuitpython-spec.js -------------------------------------------------------------------------------- /styles/language-circuitpython.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jb3/language-circuitpython/HEAD/styles/language-circuitpython.less --------------------------------------------------------------------------------