Skip to content

Commit 34cfd62

Browse files
authored
fix(telescope): package_hsfiles extension (#489)
Fixes #488.
1 parent ee69a8a commit 34cfd62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/telescope/_extensions/ht/extension.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ return {
3030
-- Find Haskell files within the current (sub)package
3131
package_hsfiles = function(opts)
3232
opts = vim.tbl_deep_extend('keep', { type_filter = 'haskell' }, opts or {})
33-
n_assert(require('haskell-tools').project).telescope_package_grep(opts)
33+
n_assert(require('haskell-tools').project).telescope_package_files(opts)
3434
end,
3535
hoogle_signature = function(opts)
3636
n_assert(require('haskell-tools').hoogle).hoogle_signature(opts)

0 commit comments

Comments
 (0)