mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- Make use of use-package's :bind option whenever possible. - Make use of use-package's :hook option whenever possible. - Rename and move all mode setup functions into use-package's :init step. - Other minor misc fixes and tweaks to a few modules.
21 lines
592 B
EmacsLisp
21 lines
592 B
EmacsLisp
;;; siren-goto-chg.el --- jimeh's Emacs Siren: goto-chg configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for goto-chg.
|
|
|
|
;;; Code:
|
|
|
|
(use-package goto-chg
|
|
:bind (("C-." . goto-last-change)
|
|
("C-," . goto-last-change-reverse)
|
|
;; Flyspell uses C-. and C-, itself in a such a way that this is the
|
|
;; only way to make goto-chg bind to those keys while flyspell-mode is
|
|
;; enabled.
|
|
:map flyspell-mode-map
|
|
("C-." . goto-last-change)
|
|
("C-," . goto-last-change-reverse)))
|
|
|
|
(provide 'siren-goto-chg)
|
|
;;; siren-goto-chg.el ends here
|