File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,11 +49,11 @@ using [lazy.nvim](https://github.com/folke/lazy.nvim):
49
49
desc = ' gitpad branch' ,
50
50
},
51
51
{
52
- " <leader>pbv " ,
52
+ ' <leader>pvs ' ,
53
53
function ()
54
- require (" gitpad" ).toggle_gitpad_branch ({ window_type = " split" , split_win_opts = { split = " right" } })
54
+ require (' gitpad' ).toggle_gitpad_branch ({ window_type = ' split' , split_win_opts = { split = ' right' } })
55
55
end ,
56
- desc = " gitpad branch vertical split" ,
56
+ desc = ' gitpad branch vertical split' ,
57
57
},
58
58
59
59
-- Daily notes
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ function M.open_window(opts)
195
195
-- But what's kinda annoying is the fact that using is would then
196
196
-- set the `signcolumn` to be `auto` which is not what I want most of the time
197
197
-- So let's just set all minimal options except signcolumn to be no
198
- if M .config .style == ' ' then
198
+ if M .config .floating_win_opts . style == ' ' then
199
199
vim .api .nvim_set_option_value (' number' , false , { win = gitpad_win_id })
200
200
vim .api .nvim_set_option_value (' relativenumber' , false , { win = gitpad_win_id })
201
201
vim .api .nvim_set_option_value (' cursorline' , false , { win = gitpad_win_id })
You can’t perform that action at this time.
0 commit comments