Skip to content

Commit 7964610

Browse files
committed
nvim/plugin: fix lack optDelim space
Signed-off-by: Koichi Shiraishi <[email protected]>
1 parent bdbf30c commit 7964610

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nvim/plugin/plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ func (p *Plugin) Manifest(host string) []byte {
476476
optDelim := ""
477477
for _, k := range keys {
478478
fmt.Fprintf(&buf, "%s'%s': '%s'", optDelim, k, escape(spec.Opts[k]))
479-
optDelim = ","
479+
optDelim = ", "
480480
}
481481

482482
fmt.Fprintf(&buf, "}},\n")

0 commit comments

Comments
 (0)