https://github.com/markxnelson/cool-mode
Emacs mode for COOL programming language
https://github.com/markxnelson/cool-mode
Last synced: 4 months 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 (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-23T09:56:38.000Z (over 11 years ago)
- Last Synced: 2025-01-13T11:32:53.769Z (6 months 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))
```