From: Eshel Yaron Date: Mon, 16 May 2022 07:59:22 +0000 (+0300) Subject: Move esy/push-button from "M-o" to "M-s b" X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=366091d61e8f4674fc09a17278f0f39b2a8b7de4;p=dotfiles.git Move esy/push-button from "M-o" to "M-s b" --- diff --git a/.emacs.d/esy.org b/.emacs.d/esy.org index 974b693..fb745b4 100644 --- a/.emacs.d/esy.org +++ b/.emacs.d/esy.org @@ -796,12 +796,11 @@ refiling directly into deeper headings as well. (global-set-key [remap ns-print-buffer] #'move-dup-duplicate-up) (global-set-key (kbd "M-p") #'move-dup-move-lines-up) (global-set-key (kbd "M-n") #'move-dup-move-lines-down) - (global-set-key (kbd "M-o") #'esy/push-button) (global-set-key (kbd "C-,") #'backward-delete-char) (global-set-key (kbd "C-.") #'embark-act) (global-set-key (kbd "C-;") #'avy-goto-char-timer) (global-set-key (kbd "C-s-f") #'toggle-frame-fullscreen) - (global-set-key [remap just-one-space] 'cycle-spacing)) + (global-set-key [remap just-one-space] #'cycle-spacing)) (add-hook 'after-init-hook #'esy/customize-global-keymap) #+end_src @@ -813,7 +812,7 @@ refiling directly into deeper headings as well. #+begin_src emacs-lisp (defun esy/customize-ctl-x-map () - "Configure the `C-x' keymap." + "Configure the `ctrl-x-map' keymap." (keymap-set ctl-x-map "b" #'consult-buffer) (keymap-set ctl-x-4-map "b" #'consult-buffer-other-window) (keymap-set ctl-x-map "!" #'consult-flymake) @@ -826,6 +825,20 @@ refiling directly into deeper headings as well. (add-hook 'after-init-hook #'esy/customize-ctl-x-map) #+end_src +** =M-s= keybindings +:PROPERTIES: +:CUSTOM_ID: search-map-keybindings +:END: + +#+begin_src emacs-lisp + (defun esy/customize-search-map () + "Configure the `search-map' keymap." + (keymap-set search-map "b" #'esy/push-button)) + + (add-hook 'after-init-hook #'esy/customize-search-map) +#+end_src + + ** =ace-window= homerow keys :PROPERTIES: :CUSTOM_ID: ace-window