Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacylang/jacy-atom
Jacy-Lang Atom package
https://github.com/jacylang/jacy-atom
atom jacy syntax-highlighting
Last synced: about 1 month ago
JSON representation
Jacy-Lang Atom package
- Host: GitHub
- URL: https://github.com/jacylang/jacy-atom
- Owner: jacylang
- License: mit
- Created: 2021-07-02T13:52:26.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-27T07:12:18.000Z (over 3 years ago)
- Last Synced: 2024-04-29T18:08:27.655Z (7 months ago)
- Topics: atom, jacy, syntax-highlighting
- Language: JavaScript
- Size: 156 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Jacy programming language grammar for Atom
Tree-Sitter based Atom plugin for Jacy programming language.
### Installation
1. Install Atom editor if you still haven't
2. Try to search for `language-jacy` package from editor
3. If package found -- install it 😅
4. If no package found:
- Go to console and write `apm install language-jacy` (apm is the Atom Package Manager which likely be installed if Atom installed)
5. Restart Atom editor, you will see `Jacy` tab in top bar or in `packages` menu (depending on changes to this package)### What's in the box?!
- Basic highlighting and autocompletion
- Increase/Decrease indent settings (e.g. after `{`) and enclosing delimiters autocompletion (e.g. write `'`, get `'_'`)
- Some simple snippets
- Code folds (supports folding for `{}`, `[]`, `<>` and block comments `/**/`)### What's next?
This package was made "Just to be" and not for real-world usage as *Jacy* is VERY WIP.
Anyway, some things are planned for future and it is appreciated to contribute to this repo.1. Stabilize and finish grammar (not `tree-sitter-jacy` but regexps for highlighting)
2. Add more snippets (at least one for each syntax-unit)
3. Write some tests (mostly about `tree-sitter-jacy`)
4. Maybe add some menu items, keymaps or styles?