2
Elisp 코드를 형식화 (확장)하는 명령
elisp 출력을 인쇄하는 경우와 같이 다음과 같은 기능이 있다고 가정 해 봅시다. (defun my-example-function () (let ((a (do-something)) (b (do-something))) (setq someone me) (with-current-buffer b (do-that (or this (and that those))) (format "%s" a)))) 나는 그것을 다음과 같이 인간이 쓸 수있는 것으로 바꿀 수있는 명령을 원합니다. (defun my-example-function () (let …
21
elisp
formatting