尝试把string-inflection添加到evil-mc的known commands失败(evil-mc是个multi cursor插件)

evil-mc使用evil-mc-custom-known-commands来确定当收到一个command时如何行动,我抄了doom的写法:

https://github.com/hlissner/doom-emacs/blob/master/modules/feature/evil/config.el#L298

来加入string-inflection:

(dolist (fn '(string-inflection-kebab-case
                string-inflection-camelcase string-inflection-lower-camelcase))
    (push (cons fn '((:default . evil-mc-execute-default-call)))
          evil-mc-custom-known-commands))

我理解没错的话,这些代码是说“string-inflection没什么特别的,当在multiple cursor时收到它的时候,只要对每个cursor执行默认行为(evil-mc-execute-default-call)就行了”。
然而没有成功。