:PROPERTIES:
:ID: 32daa74b-39b2-4275-bd88-55e9f9d0ffb5
:END:
-I made these bindings to put my more-used commands on better keys, and swap them with the less-used ones.
+I made these bindings to put my more-used commands on better keys, and swap them with the less-used ones. Also add bindings for ~isearch-*-regexp~.
#+BEGIN_SRC emacs-lisp
(keymap-global-set "M-s ." 'isearch-forward-thing-at-point)
(keymap-global-set "M-s M-." 'isearch-forward-symbol-at-point)
(keymap-global-set "M-%" 'replace-regexp)
(keymap-global-set "C-%" 'replace-string)
-(keymap-global-set "C-s" 'isearch-forward-regexp)
-(keymap-global-set "C-S-S" 'isearch-forward)
-(keymap-global-set "C-r" 'isearch-backward-regexp)
-(keymap-global-set "C-S-R" 'isearch-backward)
+(keymap-global-set "C-S-S" 'isearch-forward-regexp)
+(keymap-global-set "C-S-R" 'isearch-backward-regexp)
#+END_SRC
*** Elisp/Eval bindings