Skip to content

Commit

Permalink
Merge pull request technomancy#105 from mjc-/v2
Browse files Browse the repository at this point in the history
default to using regexp for query-replace
  • Loading branch information
technomancy committed Jan 1, 2012
2 parents 3667ac4 + df332ab commit ca30f29
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/starter-kit-bindings.el
Expand Up @@ -62,8 +62,10 @@
;; Use regex searches by default.
(global-set-key (kbd "C-s") 'isearch-forward-regexp)
(global-set-key (kbd "\C-r") 'isearch-backward-regexp)
(global-set-key (kbd "M-%") 'query-replace-regexp)
(global-set-key (kbd "C-M-s") 'isearch-forward)
(global-set-key (kbd "C-M-r") 'isearch-backward)
(global-set-key (kbd "C-M-%") 'query-replace)

;; Jump to a definition in the current file. (Protip: this is awesome.)
(global-set-key (kbd "C-x C-i") 'imenu)
Expand Down

0 comments on commit ca30f29

Please sign in to comment.