Skip to content

Commit

Permalink
Merge pull request #45 from micheam/master
Browse files Browse the repository at this point in the history
Add support for Japanese locale message
  • Loading branch information
David Jarvis authored Aug 29, 2019
2 parents f4bbc04 + a60774b commit 6b22d60
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions plugin/cljfmt.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 6b22d60

Please sign in to comment.