文字通り、サンプル行は次のように解釈されます。
(define-key evil-normal-state-map (kbd "") (kbd ">>"))
Although I don't personally recommend this. It's much cleaner to reference the function you want to run by name instead of using a keyboard macro. This clears up the need for a distinction between nmap
and nnoremap
, and is more fault-tolerant.
(define-key evil-normal-state-map (kbd "") #'evil-shift-right-line)