Skip to content

Commit

Permalink
fix: Add missing newlines - closes #50
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Ferrier committed Apr 10, 2023
1 parent 221616a commit 807793c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/debugprint/filetypes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ return {
["bash"] = shell,
["c"] = {
left = 'fprintf(stderr, "',
right = '");',
mid_var = '%d", ',
right = '\\n");',
mid_var = '%d\\n", ',
right_var = ");",
},
["cpp"] = {
Expand All @@ -47,7 +47,7 @@ return {
["dockerfile"] = docker,
["go"] = {
left = 'fmt.Fprintf(os.Stderr, "',
right = '")',
right = '\\n")',
mid_var = '%+v\\n", ',
right_var = ")",
},
Expand Down

0 comments on commit 807793c

Please sign in to comment.