I have been getting better at using the regexp search functions in emacs. Today I got tired of all this typing: M-x search-forward-regexp so I bound it to this in my init file:
(global-set-key (kbd “C-c sfr”) ‘search-forward-regexp)
Of couse I also bound the opposite:
(global-set-key (kbd “C-c sbr”) ‘search-backward-regexp)
I know, I know, how did I get anything done when I had to type out all thise characters before.