Skip to content

Commit 498b445

Browse files
committed
fix(telescope): pass missing arguments to 'open'
1 parent f5a9134 commit 498b445

File tree

1 file changed

+5
-1
lines changed
  • lua/telescope/_extensions/git_dev

1 file changed

+5
-1
lines changed

lua/telescope/_extensions/git_dev/init.lua

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,11 @@ local recents = function(opts)
115115
if not selection then
116116
return
117117
end
118-
require("git-dev").open(selection.value.args.repo)
118+
require("git-dev").open(
119+
selection.value.args.repo,
120+
selection.value.args.ref,
121+
selection.value.args.opts
122+
)
119123
end)
120124
return true
121125
end,

0 commit comments

Comments
 (0)