Add evil-macrostep

This commit is contained in:
James Nguyen 2017-11-05 09:18:39 -08:00
parent 06fe39ebdf
commit a2e8d82526
2 changed files with 51 additions and 1 deletions

View File

@ -69,7 +69,10 @@
(evil-ggtags-set-keys))
(with-eval-after-load 'ivy
(require 'evil-ivy)
(evil-ivy-set-keys)))
(evil-ivy-set-keys))
(with-eval-after-load 'macrostep
(require 'evil-macrostep)
(evil-collection-set-keys)))
;;;###autoload
(defun evil-collection-all-modes-init ()

47
evil-macrostep.el Normal file
View File

@ -0,0 +1,47 @@
;;; evil-macrostep.el --- Evil Integration for Macrostep -*- lexical-binding: t -*-
;; Copyright (C) 2017 James Nguyen
;; Author: James Nguyen <james@jojojames.com>
;; Maintainer: James Nguyen <james@jojojames.com>
;; URL: https://github.com/jojojames/evil-collection
;; Version: 0.0.1
;; Package-Requires: ((emacs "25.1"))
;; Keywords: evil, macrostep, tools
;; HomePage: https://github.com/jojojames/evil-collection
;; 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 3 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:
;; This package provides a sane set of defaults for `macrostep-mode' when using
;; `evil-mode'.
(require 'evil-collection-util)
(require 'macrostep)
(defun evil-collection-set-keys ()
;; Keymaps don't seem to be populated on first try.
;; Force `evil' to normalize keymaps.
(add-hook 'macrostep-mode-hook #'evil-normalize-keymaps)
(evil-define-key 'normal macrostep-keymap
"q" 'macrostep-collapse-all
"e" 'macrostep-expand
"u" 'macrostep-collapse
"gj" 'macrostep-next-macro
"gk" 'macrostep-prev-macro
"C-j" 'macrostep-next-macro
"C-k" 'macrostep-prev-macro))
(provide 'evil-macrostep)
;;; evil-macrostep.el ends here