Skip to content

Commit

Permalink
Merge pull request #276 from hupfdule/plugconf_eof
Browse files Browse the repository at this point in the history
End plugconf files with \n
  • Loading branch information
tyru authored Apr 18, 2019
2 parents dd1a16c + dc36b29 commit 81c27c4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugconf/plugconf.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ func (pi *ParsedInfo) GeneratePlugconf() ([]byte, error) {
buf.WriteString(f)
}

buf.WriteString("\n")

return buf.Bytes(), nil
}

Expand Down Expand Up @@ -695,6 +697,8 @@ endfunction
}
}

buf.WriteString("\n")

return buf.Bytes(), nil
}

Expand Down

0 comments on commit 81c27c4

Please sign in to comment.