In my emacs, tide-mode
has a key for jump-to-definition
of g d
I would like to define keys like this where i do not need a prefix (I use evil, so it would be in normal mode).
When I try this:
(global-set-key (kbd "g c c") 'comment-or-uncomment-region)
I get the message: Key sequence g c c starts with a non-prefix key
Is this possible?