【发布时间】:2014-08-21 04:39:03
【问题描述】:
我想为所有苹果酒输出设置填充列值。我正在使用:
(require 'cider)
(setq cider-show-error-buffer nil
cider-docview-fill-column 76
cider-stacktrace-fill-column 76
nrepl-buffer-name-show-port nil
cider-repl-display-in-current-window t
cider-repl-result-prefix ";; => ")
但是当我打电话给meta 时,我得到了这个:
user> (meta #'str)
;; => {:added "1.0", :ns #<Namespace clojure.core>, :name str, :file "clojure/core.clj", :static true, :column 1, :line 511, :tag java.lang.String, :arglists ([] [x] [x & ys]), :doc "With no args, returns the empty string. With one arg x, returns\n x.toString(). (str nil) returns the empty string. With more than\n one arg, returns the concatenation of the str values of the args."}
一切都在一行中。我敢打赌有一些变量cider-...-fill-column 会对我有所帮助。我用谷歌搜索了它,但只找到了cider-docview-fill-column 和cider-stacktrace-fill-column。
【问题讨论】: