We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
none
1 parent b00b534 commit d6d9148Copy full SHA for d6d9148
1 file changed
lua/tinygit/config.lua
@@ -173,6 +173,11 @@ function M.setup(userConfig)
173
M.config.history.diffPopup.border = fallback
174
warn(('Border type "none" is not supported, falling back to %q.'):format(fallback))
175
end
176
+ if M.config.commit.border == "none" then
177
+ local fallback = defaultConfig.commit.border
178
+ M.config.commit.border = fallback
179
+ warn(('Border type "none" is not supported, falling back to %q.'):format(fallback))
180
+ end
181
182
-- VALIDATE `context` > 0 (0 is not supported without `--unidiff-zero`)
183
-- DOCS https://git-scm.com/docs/git-apply#Documentation/git-apply.txt---unidiff-zero
0 commit comments