I want to bind a command to C-'
, C-`
and C-0
through C-9
keys. It's not working in the terminal
Is there a way to do so?
I want to bind a command to C-'
, C-`
and C-0
through C-9
keys. It's not working in the terminal
Is there a way to do so?
The following works for me:
(define-key text-mode-map (kbd "C-9") #'next-line)
Or, with bind-key
:
(bind-key (kbd "C-9") #'next-line)