diff options
author | Jesús <heckyel@hyperbola.info> | 2018-07-23 20:05:22 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2018-07-23 20:05:22 -0500 |
commit | 73c79a5ed4073d3f217c40fe825f084895f8e0f9 (patch) | |
tree | 44fccd0d074e921ac0294d9c067e299d2cf819b3 | |
parent | 0d906cf34408e0d8272771a34a73d16b270532bb (diff) | |
download | emacs-base-73c79a5ed4073d3f217c40fe825f084895f8e0f9.tar.lz emacs-base-73c79a5ed4073d3f217c40fe825f084895f8e0f9.tar.xz emacs-base-73c79a5ed4073d3f217c40fe825f084895f8e0f9.zip |
remove blank-spaces
-rw-r--r-- | lisp/init-gui.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/init-gui.el b/lisp/init-gui.el index 78445a8..8cd8c26 100644 --- a/lisp/init-gui.el +++ b/lisp/init-gui.el @@ -38,7 +38,7 @@ ;;---------------------------------------------------------------------------- ;; Configure keys ;;---------------------------------------------------------------------------- -(global-unset-key (kbd "C-z")) ; Stops C-z from minimizing window +(global-unset-key (kbd "C-z")) ; Stops C-z from minimizing window (global-set-key (kbd "M-<down>") (lambda () (interactive) (sanityinc/adjust-opacity nil -2))) ; M-down less visibility (global-set-key (kbd "M-<up>") (lambda () (interactive) (sanityinc/adjust-opacity nil 2))) ; M-up more visibility (global-set-key (kbd "M-0") (lambda () (interactive) (modify-frame-parameters nil '((alpha . 100))))) ; M-0 standard visibility |