Skip to content

Commit

Permalink
fix(inline): removed unnecessary newline
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanREmery committed Dec 23, 2024
1 parent 38870e0 commit 92e144e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/codecompanion/adapters/gemini.lua
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ return {
if model == "gemini-2.0-flash-exp" then
text = text:gsub("```", "")
if context then
text = text:gsub(context.filetype .. "\n", "\n")
text = text:gsub(context.filetype .. "\n", "")
end
end

Expand Down

0 comments on commit 92e144e

Please # to comment.