2018-06-15 13:10:00 +02:00
|
|
|
;;; emacs/electric/autoload.el -*- lexical-binding: t; -*-
|
2018-06-15 12:30:56 +02:00
|
|
|
|
|
|
|
;;;###autodef
|
|
|
|
(defun set-electric! (modes &rest plist)
|
2018-10-16 18:30:44 -04:00
|
|
|
"Declare that WORDS (list of strings) or CHARS (lists of chars) should trigger
|
|
|
|
electric indentation.
|
|
|
|
|
|
|
|
Enables `electric-indent-local-mode' in MODES.
|
|
|
|
|
|
|
|
\(fn MODES &key WORDS CHARS)"
|
2018-06-22 01:30:27 +02:00
|
|
|
(declare (indent defun))
|
2018-06-22 01:24:00 +02:00
|
|
|
(dolist (mode (doom-enlist modes))
|
|
|
|
(let ((hook (intern (format "%s-hook" mode)))
|
|
|
|
(fn (intern (format "+electric|init-%s" mode))))
|
|
|
|
(cond ((null (car-safe plist))
|
|
|
|
(remove-hook hook fn)
|
|
|
|
(unintern fn nil))
|
|
|
|
((fset fn
|
|
|
|
(lambda ()
|
|
|
|
(cl-destructuring-bind (&key chars words) plist
|
|
|
|
(electric-indent-local-mode +1)
|
|
|
|
(if chars (setq electric-indent-chars chars))
|
|
|
|
(if words (setq +electric-indent-words words)))))
|
|
|
|
(add-hook hook fn))))))
|