Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lua/neogit/process.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ local Spinner = require("neogit.spinner")
local api = vim.api
local fn = vim.fn

local command_mask =
vim.pesc(" --no-pager --literal-pathspecs --no-optional-locks -c core.preloadindex=true -c color.ui=always")
local command_mask = vim.pesc(
" --no-pager --literal-pathspecs --no-optional-locks -c core.preloadindex=true -c color.ui=always -c diff.noprefix=false"
)

local function mask_command(cmd)
local command, _ = cmd:gsub(command_mask, "")
Expand Down
Loading