ClojureのREPLでよく使うvarを短縮する
REPL上で、ファイルの変更を反映するのに毎回↓するの、長いですね。
(use '[clojure.tools.namespace.repl :only (refresh)])
(refresh)
lein-shorthandプラグインを使うとこう↓なります。楽ですね。
(./r)
lein-shorthand
任意の完全修飾シンボル名に対して、別名を付けることができます。
上記の例で言えば、clojure.tools.namespace.repl/refresh
という完全修飾シンボル名に./r
という別名を付けています。
もっと分解すると、clojure.tools.namespace.repl
名前空間のrefresh
というシンボルに、.
1という名前空間のr
というシンボルを付けています。
Configuration
-
project.clj
2の:plugins
キーにcom.palletops/lein-shorthand
を追加します。 - さらに
:shorthand
というキーに{<名前空間> [完全修飾シンボル名...]}
を書きます。
Example
自分のprofiles.clj
は↓のようにしてみました。
{:user {:plugins [
; ....
[com.palletops/lein-shorthand "0.4.0"] ; こいつが今回のテーマ
; ....
]
:dependencies [
; ....
[alembic "0.3.2"]
[org.clojure/tools.namespace "0.2.11"]
; ....
]
:shorthand {. [[r clojure.tools.namespace.repl/refresh] ; clojure.tools.namespace.repl/refresh -> ./r
[pp clojure.pprint/pprint] ; clojure.pprint/pprint -> ./pp
clojure.repl/doc ; clojure.repl/doc -> ./doc
clojure.repl/find-doc ; clojure.repl/find-doc -> ./find-doc
clojure.repl/source ; clojure.repl/source -> ./source
alembic.still/distill ; alembic.still/distill -> ./distill
alembic.still/lein]}}} ; alembic.still/lein -> ./lein
Usage
ちゃんと、補完されます。いい感じですね!
きっかけ
先日のnishi-shinju-clojure#0の高速!Clojure Web 開発入門という発表の中で、alembic3というleiningenのプラグインが紹介されており、そのalembicのREADMEでlein-shorthand
が登場していました。
aleimbicはpallet、lein-shorthandはPalletOpsのGitHubOrganizationに置かれており、開発者は同じ方でのようです。
Author And Source
この問題について(ClojureのREPLでよく使うvarを短縮する), 我々は、より多くの情報をここで見つけました https://qiita.com/hatappo/items/fa36b37409f79a387304著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .