Skip to content

Commit c66aee7

Browse files
authored
Merge pull request #38 from entropitor/master
fix(gist): set higher default limit
2 parents b46686f + 9ea6602 commit c66aee7

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ Telescope gh issues author=windwp label=bug
111111
|-----------|------------------------------------|
112112
| public | Filter by public |
113113
| secret | Filter by secret |
114+
| limit | limit default = 100 |
114115

115116
### Key mappings
116117
| key | Usage |

lua/telescope/_extensions/gh_builtin.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ local function parse_opts(opts, target)
2525
elseif target == "run" then
2626
tmp_table = { "workflow", "limit" }
2727
elseif target == "gist" then
28-
tmp_table = { "public", "secret" }
28+
tmp_table = { "public", "secret", "limit" }
2929
if opts.public then
3030
opts.public = " "
3131
end

0 commit comments

Comments
 (0)