标签: emacs spacemacs
我有什么:
(abs (/ total 2))
我在寻找:
(/ (abs total) 2)
我很确定在emacs中有一个命令,尽管我在文档中找不到一个命令。如果重要,我使用spacemacs。
答案 0 :(得分:0)
它可以转换
(abs (/ |total 2))
到
(/ (abs |total 2))
(其中|是重点)
但它并不知道“abs”和“/”之间的一元/二元差异。 也许该功能是解决方案的起点?