Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markxnelson/cool-mode
Emacs mode for COOL programming language
https://github.com/markxnelson/cool-mode
Last synced: about 1 month ago
JSON representation
Emacs mode for COOL programming language
- Host: GitHub
- URL: https://github.com/markxnelson/cool-mode
- Owner: markxnelson
- Created: 2014-03-22T01:31:20.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-23T09:56:38.000Z (almost 11 years ago)
- Last Synced: 2023-08-20T09:52:29.564Z (over 1 year ago)
- Language: Emacs Lisp
- Size: 148 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
cool-mode
=========Emacs mode for COOL programming language
This is a preliminary attempt at a major mode for COOL. Indentation is not working perfectly yet.
# HOW TO USE
1. Save the cool-mode.el in your emacs site-lisp directory.
2. Add something like the following to your ~/.emacs to enable it:```
; cool mode(autoload 'cool-mode "cool-mode" "Major mode for editing COOL programs" t)
(setq auto-mode-alist
(append '(("\\.cl\\'" . cool-mode)) auto-mode-alist))
```