el-get/recipes/gyp-mode.rcp
Vincent Bernat 7b2e04dba7 Add a recipe for gyp-mode.
This is the official mode for gyp files. Since Google Code does not
provide source archive anymore, we just "hotlink" to the appropriate
file.
2014-01-11 23:31:56 +01:00

10 lines
431 B
Plaintext

(:name gyp-mode
:description "Major mode for editing gyp files"
:type http
:url "https://gyp.googlecode.com/svn/trunk/tools/emacs/gyp.el"
:prepare (progn
(autoload 'gyp-mode "gyp"
"Major mode for editing gyp files")
(add-to-list 'auto-mode-alist '("\\.gyp$" . gyp-mode))
(add-to-list 'auto-mode-alist '("\\.gypi$" . gyp-mode))))