Skip to content

Commit

Permalink
Fix missing default_collapsed option when using Lua bin
Browse files Browse the repository at this point in the history
  • Loading branch information
rbong committed Jul 31, 2024
1 parent 7c51c56 commit db6d236
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions plugin/flog_graph_vim.vim
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ def g:FlogGetVimBinGraph(git_cmd: string): dict<any>
# enable_graph
cmd ..= state.opts.graph ? 'true' : 'false'
cmd ..= ' '
# default_collapsed
cmd ..= state.opts.default_collapsed ? 'true' : 'false'
cmd ..= ' '
# cmd
cmd ..= shellescape(git_cmd)

Expand Down

0 comments on commit db6d236

Please sign in to comment.