mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
7 lines
343 B
EmacsLisp
7 lines
343 B
EmacsLisp
(add-to-list 'load-path "@SITELISP@")
|
|
(autoload 'actionscript-mode "actionscript-mode"
|
|
"Major mode for editing Actionscript files." t)
|
|
(add-to-list 'auto-mode-alist '("\\.as\\'" . actionscript-mode))
|
|
;; we cannot use require because the file doesn't provide the feature
|
|
(with-eval-after-load 'actionscript-mode (load "actionscript-config"))
|