在下面的代码片段中,如果我转到以(
开头的行的第一个左括号(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 突出显示第一个括号(
和右)
括号。
是否有,如果有,什么是 vim 命令可以拉动整个 spit 命令?
谢谢。