Don't you hate those stupid questions Emacs asks, when all you have to do is press enter to select the default choice.
I was using tags and it pissed me off that i must press enter each time to select the TAG.
Here is a quick fix for all such problems:
(defun soft-tag()
(interactive)
(find-tag (current-word))
(global-set-key "\M-." 'soft-tag)
Worked as a charm...and now i can show Hiran, Emacs does it too like Vi.
Comments