bind! -> map!; new minimalistic keybinding macro

This commit is contained in:
Henrik Lissner 2015-11-30 05:31:20 -05:00
parent 2e4a083bbb
commit 81df2830a9
19 changed files with 431 additions and 441 deletions

View file

@ -5,14 +5,14 @@
:config
(require 'pcre2el)
(setq reb-re-syntax 'pcre)
(bind! :map rxt-help-mode-map :n [escape] 'kill-buffer-and-window)
(map! :map rxt-help-mode-map :n [escape] 'kill-buffer-and-window)
(add-hook! reb-mode 'narf|reb-cleanup)
(evil-set-initial-state 'reb-mode 'insert)
(bind! :map reb-mode-map
:n "C-g" 'reb-quit
:n [escape] 'reb-quit
:n [backtab] 'reb-change-syntax))
(map! :map reb-mode-map
:n "C-g" 'reb-quit
:n [escape] 'reb-quit
:n [backtab] 'reb-change-syntax))
(provide 'module-regex)
;;; module-regex.el ends here