wok-current annotate emacs-pkg-lua-mode/stuff/90-lua-mode.el @ rev 15987
mktorrent: add to ARM and x86_64 arch
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Mar 02 02:18:29 2014 +0100 (2014-03-02) |
parents | 4cf5da7c32ac |
children |
rev | line source |
---|---|
domcox@3938 | 1 ;; lua-mode start file for SliTaz |
domcox@14000 | 2 ;; Last update: 2013-02-08 |
domcox@3938 | 3 ;; |
domcox@14000 | 4 ;; To set up Emacs to automatically edit files ending in .lua using Lua-mode |
domcox@3938 | 5 |
domcox@3938 | 6 (autoload 'lua-mode "lua-mode" "Lua editing mode." t) |
domcox@14000 | 7 (add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode)) |
domcox@14000 | 8 (add-to-list 'interpreter-mode-alist '("lua" . lua-mode)) |
domcox@3938 | 9 |
domcox@3938 | 10 |