Skip to content

Commit

Permalink
style: auto-format with stylua
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgrieser authored and github-actions[bot] committed Nov 7, 2024
1 parent 4444f16 commit cef9c56
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lua/tinygit/commands/push-pull.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ local function pushCmd(opts)
gitCommand,
{ detach = true, text = true },
vim.schedule_wrap(function(result)
local out = vim.trim((result.stdout or "") .. (result.stderr or ""))
:gsub("\n%s+", "\n") -- fix leading spacing
local out = vim.trim((result.stdout or "") .. (result.stderr or "")):gsub("\n%s+", "\n") -- fix leading spacing
local commitRange = out:match("%x+%.%.%x+")

-- notify
Expand Down

0 comments on commit cef9c56

Please sign in to comment.