summaryrefslogtreecommitdiffstats
path: root/chromium/tools/emacs/chrome-filetypes.el
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/tools/emacs/chrome-filetypes.el')
-rw-r--r--chromium/tools/emacs/chrome-filetypes.el16
1 files changed, 0 insertions, 16 deletions
diff --git a/chromium/tools/emacs/chrome-filetypes.el b/chromium/tools/emacs/chrome-filetypes.el
deleted file mode 100644
index 14fc6bbaef3..00000000000
--- a/chromium/tools/emacs/chrome-filetypes.el
+++ /dev/null
@@ -1,16 +0,0 @@
-; To get syntax highlighting and tab settings for gyp(i) files, add the
-; following to init.el:
-; (setq-default chrome-root "/path/to/chrome/src/")
-; (add-to-list 'load-path (concat chrome-root "tools/emacs"))
-; (require 'chrome-filetypes)
-
-(define-derived-mode gyp-mode python-mode "Gyp"
- "Major mode for editing Generate Your Project files."
- (setq indent-tabs-mode nil
- tab-width 2
- python-indent 2))
-
-(add-to-list 'auto-mode-alist '("\\.gyp$" . gyp-mode))
-(add-to-list 'auto-mode-alist '("\\.gypi$" . gyp-mode))
-
-(provide 'chrome-filetypes)