当前位置:  开发笔记 > 前端 > 正文

从Emacs生成代码

如何解决《从Emacs生成代码》经验,为你挑选了2个好方法。

如何在emacs中快速编写以下代码?

\newcommand{\cA}{\mathcal A}
\newcommand{\cB}{\mathcal B}
\newcommand{\cC}{\mathcal C}
...
...
\newcommand{\cY}{\mathcal Y}
\newcommand{\cZ}{\mathcal Z}

有没有比写作更快的方法

A
B
C
D
.
.
.
Y
Z

然后在每一行做宏?(将A更改为\newcommand {\ cA} {\ mathcal A})



1> HD...:

我同意键盘宏会以最快的速度获得结果.

更有趣的是程序化方法:

(loop 
      for n from (string-to-char "A") to (string-to-char "Z")
      for c = (char-to-string n)
      do (insert (concat "\\newcommand{\\c" c "}{\\mathcal " c "}\n")))



2> user51568..:

一般来说,当你第一次遇到这种问题时,你会使用键盘宏,就像JB已经说过的那样.

第二次,查看Steve Yegge撰写的这篇非常有趣的文章:http://steve-yegge.blogspot.com/2006/06/shiny-and-new-emacs-22.html ,其中包含完全像问题的解决方案你的.

为了您的方便和我自己的照明,我实际上继续进行测试:

我会先说

A
...
A

26次

做一个

Mx replace-regexp

A
\\newcommand{\\c\,(string (+ ?A \#))}{\\mathcal \,(string (+ ?A \#))}

推荐阅读
郑谊099_448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有