Skip to content

Commit

Permalink
Merge pull request #87 from matze-dd/master
Browse files Browse the repository at this point in the history
Display all replacement suggestions from LanguageTool
  • Loading branch information
rhysd committed Nov 30, 2020
2 parents a3d6740 + 8a4d1c4 commit db46357
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/grammarous/info_win.vim
Expand Up @@ -79,8 +79,8 @@ function! s:get_info_buffer(e)
if a:e.replacements !=# ''
let lines +=
\ [
\ 'Correction:',
\ ' ' . string(split(a:e.replacements, '#', 1)[0]),
\ 'Corrections:',
\ ' ' . join(split(a:e.replacements, '#', 1), '; '),
\ '',
\ ]
endif
Expand Down

0 comments on commit db46357

Please sign in to comment.