Watch
1
0
Fork
You've already forked lll-mode
0
mirror of https://github.com/rheaplex/lll-mode.git synced 2026-09-16 16:42:00 +00:00
No description
  • Emacs Lisp 100%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2014-06-05 19:10:45 -07:00
.gitignore Initial revision. Committed at decentral.bangtown . 2014-06-05 19:10:45 -07:00
COPYING Initial revision. Committed at decentral.bangtown . 2014-06-05 19:10:45 -07:00
lll-mode.el Initial revision. Committed at decentral.bangtown . 2014-06-05 19:10:45 -07:00
README Initial revision. Committed at decentral.bangtown . 2014-06-05 19:10:45 -07:00

lll-mode.el
===============

By Rhea Myers <[email protected]>

Emacs support for editing Ethereum Low Level Language code.


Installation
============

To install the Emacs major mode, add the file lll-mode.el to your Emacs
load path. You can then load it by typing the following in Emacs:

 M-x lll-mode

Alternatively you can have Emacs load it automatically for files with a .lll
extension by adding the following to your .emacs file:
 
(require 'lll-mode)
(add-to-list 'auto-mode-alist '("\\.lll$" . lll-mode))

Electric Mode
=============

lll-mode works well with electric-pair mode from Emacs 24.1.
To enable electric pair mode either:

M-x electric-pair-mode

or add the following to your .emacs file:

(add-hook 'lll-mode-hook 'electric-pair-mode)