mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
bind! -> map!; new minimalistic keybinding macro
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user