1

Fix formatting error in bind-keys(*) function call

This commit is contained in:
Jessie Hildebrandt 2019-10-09 21:27:05 -04:00
parent 0a265256a1
commit 927e25a6bc

32
init.el
View File

@ -222,22 +222,22 @@
(revert-buffer :ignore-auto :noconfirm)))) (revert-buffer :ignore-auto :noconfirm))))
;; Set up all custom bindings (non-package-specific) ;; Set up all custom bindings (non-package-specific)
(bind-keys ([f6] 'visual-line-mode) (bind-keys ([f6] . visual-line-mode)
([f7] (if (>= emacs-major-version 26) 'display-line-numbers-mode 'linum-mode)) ([f7] . display-line-numbers-mode)
([f10] 'tmm-menubar) ([f10] . tmm-menubar)
("C-z" 'undo) ("C-z" . undo)
("C-c o" 'switch-to-minibuffer-window) ("C-c o" . switch-to-minibuffer-window)
("C-c r" 'revert-buffer-no-confirm) ("C-c r" . revert-buffer-no-confirm)
("C-x RET" 'eshell) ("C-x RET" . eshell)
("C-x C-b" 'ibuffer) ("C-x C-b" . ibuffer)
("M-n" 'scroll-up-line) ("M-n" . scroll-up-line)
("M-p" 'scroll-down-line) ("M-p" . scroll-down-line)
("C-M-n" 'forward-paragraph) ("C-M-n" . forward-paragraph)
("C-M-p" 'backward-paragraph)) ("C-M-p" . backward-paragraph))
(bind-keys* ("C-c C-i" 'windmove-up) (bind-keys* ("C-c C-i" . windmove-up)
("C-c C-k" 'windmove-down) ("C-c C-k" . windmove-down)
("C-c C-j" 'windmove-left) ("C-c C-j" . windmove-left)
("C-c C-l" 'windmove-right)) ("C-c C-l" . windmove-right))
;;==================== ;;====================
;; Init File ;; Init File