Skip to content

Commit

Permalink
fix setup arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
Junker committed Jul 11, 2022
1 parent 62b8bac commit 3b0e45f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -533,12 +533,15 @@ local function setup(args)
end

if args.open then
if args.custom then
open_custom_commands = args.custom
if args.open.custom then
open_custom_commands = args.open.custom
end

if args.run_executables then
run_executables = args.run_executables
if args.open.run_executables then
run_executables = args.open.run_executables
end
end

end
end
end
Expand Down

0 comments on commit 3b0e45f

Please sign in to comment.