次のコード スニペットで(
は、で始まる行の最初の開き括弧に移動すると、(spit
(defn missing-accts
"Prints accounts found in one report but not the other."
[report-header mapped-data out-file]
(spit out-file (str "\n\n "
(count mapped-data)
" " report-header
"\n\n") :append true)
.
.
.
vim は、最初の括弧(
と閉じ)
括弧を強調表示します。
存在する場合、spit コマンド全体をヤンクする vim コマンドは何ですか?
ありがとう。