2015-05-11 22:48:09 +00:00
|
|
|
(defvar-local focus-pre-overlay nil)
|
|
|
|
(defvar-local focus-post-overlay nil)
|
|
|
|
|
2015-05-11 22:57:31 +00:00
|
|
|
(defun focus-search-backward (regex)
|
|
|
|
(save-excursion (re-search-backward regex nil t)))
|
|
|
|
|
|
|
|
(defun focus-search-forward (regex)
|
|
|
|
(save-excursion (re-search-forward regex nil t)))
|
|
|
|
|
2015-05-11 22:48:09 +00:00
|
|
|
(defun focus-hexstr-to-int (str)
|
|
|
|
(read (concat "#x" (substring str 1))))
|
|
|
|
|
|
|
|
(defun focus-average-colors (hstr1 hstr2 &rest hstrs)
|
|
|
|
(let* ((strs (cons hstr1 (cons hstr2 hstrs)))
|
|
|
|
(avg (/ (apply '+ (mapcar 'focus-hexstr-to-int strs)) 2)))
|
|
|
|
(format "#%X" avg)))
|
|
|
|
|
|
|
|
(defun focus-move-focus ()
|
2015-05-11 22:57:31 +00:00
|
|
|
(let* ((pre (or (focus-search-backward "^\n") (point-min)))
|
|
|
|
(post (or (focus-search-forward "^\n") (point-max))))
|
|
|
|
(move-overlay focus-pre-overlay (point-min) pre)
|
|
|
|
(move-overlay focus-post-overlay post (point-max))))
|
2015-05-11 22:48:09 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(define-minor-mode focus-mode
|
|
|
|
"Dim the font color text in surrounding paragraphs."
|
|
|
|
:init-value nil
|
|
|
|
(if (not focus-mode)
|
|
|
|
(progn (mapc 'delete-overlay (list focus-pre-overlay focus-post-overlay))
|
|
|
|
(remove-hook 'post-command-hook 'focus-move-focus t))
|
|
|
|
(setq focus-pre-overlay (make-overlay (point-min) (point-min))
|
|
|
|
focus-post-overlay (make-overlay (point-max) (point-max)))
|
|
|
|
(let ((color (focus-average-colors
|
|
|
|
(face-attribute 'default :foreground)
|
|
|
|
(face-attribute 'default :background))))
|
|
|
|
(mapc (lambda (o) (overlay-put o 'face (cons 'foreground-color color)))
|
|
|
|
(list focus-pre-overlay focus-post-overlay)))
|
|
|
|
(add-hook 'post-command-hook 'focus-move-focus nil t)))
|