diff --git a/plugin/cljfmt.vim b/plugin/cljfmt.vim index 4993722..5a85214 100644 --- a/plugin/cljfmt.vim +++ b/plugin/cljfmt.vim @@ -46,9 +46,13 @@ function! s:FilterOutput(lines, ...) endif for line in a:lines - if line != "No matching autocommands" && line != "Keine passenden Autokommandos" - call add(l:output, line) + if line == "No matching autocommands" + \ || line == "Keine passenden Autokommandos" + \ || line == "該当するautocommandは存在しません" + continue endif + + call add(l:output, line) endfor if l:join_result return join(l:output, "\n")