Created
December 6, 2015 11:44
-
-
Save mickael-kerjean/0d7b5ff8370d4d21867d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; centered-window-mode.el --- Center the text when there's only one window | |
;; | |
;; Copyright (C) 2014 Anler Hp <http://anler.me> | |
;; | |
;; Author: Anler Hp <http://anler.me>, Mickael Kerjean <mickael.kerjean@gmail.com> | |
;; Version: 0.0.2 | |
;; Keywords: faces, windows | |
;; URL: https://github.com/ikame/centered-window-mode | |
;; Compatibility: GNU Emacs 23.x, GNU Emacs 24.x | |
;; | |
;; This file is NOT part of GNU Emacs. | |
;; | |
;; This program is free software; you can redistribute it and/or | |
;; modify it under the terms of the GNU General Public License | |
;; as published by the Free Software Foundation; either version 2 | |
;; of the License, or (at your option) any later version. | |
;; | |
;; This program is distributed in the hope that it will be useful, | |
;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
;; GNU General Public License for more details. | |
;; | |
;; You should have received a copy of the GNU General Public License | |
;; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
;; | |
;;; Commentary: | |
;; | |
;; Enable centered-window-mode and your text is going to be centered when there's | |
;; only one window in the frame. | |
;; | |
;;; Changes Log: | |
;; v0.0.2: | |
;; - center text depending if there is enough place available | |
;; - can update the width that is displayed | |
;; | |
;;; Code: | |
(defvar fringe-background nil "The background color used for the fringe") | |
(defvar centered-window-width 110) | |
(defun cwm/setup () | |
(add-hook 'window-configuration-change-hook 'cwm/window-configuration-change)) | |
(defun cwm/teardown () | |
(remove-hook 'window-configuration-change-hook 'cwm/reset) | |
(cwm/reset)) | |
(defadvice split-window-right (before cwm/reset-on-split activate) | |
"Disable cwm-mode presentation (if active) before splitting window" | |
(when fringe-mode | |
(cwm/reset))) | |
(defadvice split-window-right (after cwm/center-on-split activate) | |
"Reenable cwm-mode presentation (if active) after splitting window" | |
(when fringe-mode | |
(cwm/window-configuration-change))) | |
(defadvice load-theme (after cwm/set-faces-on-load-theme activate) | |
"Change the default fringe background whenever the theme changes" | |
(message "load theme after here") | |
(cwm/update-fringe-background)) | |
(defun cwm/window-configuration-change () | |
(if (> centered-window-width (window-total-width)) | |
(cwm/reset) | |
(cwm/center))) | |
(defun cwm/center () | |
(set-fringe-mode | |
(/ (- (window-pixel-width) | |
(* centered-window-width (frame-char-width))) | |
2))) | |
(defun cwm/reset () | |
(set-fringe-mode nil)) | |
(defun cwm/set-faces () | |
(custom-set-faces | |
`(fringe ((t (:background ,fringe-background)))))) | |
(defun cwm/update-fringe-background () | |
(setq fringe-background (cwm/get-fringe-background)) | |
(cwm/set-faces)) | |
(defun cwm/get-fringe-background () | |
(face-attribute 'fringe :background)) | |
(cwm/update-fringe-background) | |
;;;###autoload | |
(define-minor-mode centered-window-mode | |
"Minor mode to cbm on the current buffer." | |
:init-value nil | |
:lighter " #" | |
:global t | |
(if centered-window-mode | |
(cwm/setup) | |
(cwm/teardown))) | |
(provide 'centered-window-mode) | |
;;; centered-window-mode.el ends here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment