File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1- *nvim-tinygit.txt* For Neovim Last change: 2025 March 19
1+ *nvim-tinygit.txt* For Neovim Last change: 2025 March 23
22
33==============================================================================
44Table of Contents *nvim-tinygit-table-of-contents*
@@ -134,7 +134,7 @@ The `setup` call is optional.
134134 },
135135 commit = {
136136 keepAbortedMsgSecs = 300,
137- border = vim.fn.has("nvim-0.11") == 1 and vim.o.winborder or "rounded",
137+ border = getBorder(), -- ` vim .o .winborder` on nvim 0.11, otherwise "rounded"
138138 spellcheck = false, -- vim's builtin spellcheck
139139 wrap = "hard", ---@type "hard"|"soft"|"none"
140140 keymaps = {
@@ -183,7 +183,7 @@ The `setup` call is optional.
183183 diffPopup = {
184184 width = 0.8, -- between 0-1
185185 height = 0.8,
186- border = vim.fn.has("nvim-0.11") == 1 and vim.o.winborder or "rounded",
186+ border = getBorder(), -- ` vim .o .winborder` on nvim 0.11, otherwise "rounded"
187187 },
188188 autoUnshallowIfNeeded = false,
189189 },
You can’t perform that action at this time.
0 commit comments