https://github.com/zilliqa/scilla-mode
Emacs support for the Scilla programming language
https://github.com/zilliqa/scilla-mode
emacs major-mode scilla smart-contracts zilliqa
Last synced: 8 months ago
JSON representation
Emacs support for the Scilla programming language
- Host: GitHub
- URL: https://github.com/zilliqa/scilla-mode
- Owner: Zilliqa
- Created: 2019-10-17T07:01:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-05T13:41:24.000Z (over 6 years ago)
- Last Synced: 2025-04-07T20:43:50.908Z (10 months ago)
- Topics: emacs, major-mode, scilla, smart-contracts, zilliqa
- Language: Emacs Lisp
- Homepage: https://scilla-lang.org
- Size: 13.7 KB
- Stars: 4
- Watchers: 9
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Scilla Mode for Emacs
Provides support for font-lock, indentation, type-checking for the
[Scilla](https://scilla-lang.org) programming language.
## Installation
Add the following line to your `.emacs` file to load this mode for files ending
with `.scilla` and `.scillib`.
```elisp
;; For enabling flycheck mode for Scilla.
(setq scilla-root "/path/to/scilla/root")
;; Scilla mode
(load-file "/path/to/scilla-mode.el")
```
To enable `scilla-checker` (Scilla typechecker) for editing Scilla files,
install Flycheck for Emacs. See installation instructions
[here](http://www.flycheck.org/en/latest/user/installation.html).