mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 21:08:35 -07:00
add emacs USE flag for installing cython-mode Ackd-by: idella4@gentoo.org Closes: https://github.com/gentoo/gentoo/pull/1119
12 lines
388 B
EmacsLisp
12 lines
388 B
EmacsLisp
;;; site-lisp configuration for cython-mode
|
|
|
|
(add-to-list 'load-path "@SITELISP@")
|
|
|
|
(autoload 'cython-mode "cython-mode" "Major mode for editing Cython files" t)
|
|
;;;###autoload
|
|
(add-to-list 'auto-mode-alist '("\\.pyx\\'" . cython-mode))
|
|
;;;###autoload
|
|
(add-to-list 'auto-mode-alist '("\\.pxd\\'" . cython-mode))
|
|
;;;###autoload
|
|
(add-to-list 'auto-mode-alist '("\\.pxi\\'" . cython-mode))
|