I\'d like to bind Ctrl + R to \'isearch-backward and bind Ctrl + Shift + R to \'tags-apropos
\'isearch-backward
\'tags-apropos
Yes -- one is "\C-r", the other is "\C-R". They can easily be bound to separate commands. For example, this should do the trick if placed in your .emacs file:
"\C-r"
"\C-R"
.emacs
(global-set-key "\C-R" 'tags-apropos)