Skip to content

Commit 65e3c97

Browse files
committed
feat!: use quicklook urls (= used by AlfredExtraPane)
1 parent cffd882 commit 65e3c97

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

scripts/my-github-issues.js

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ function run() {
4848
subtitle: `#${item.number} ${repo} ${comments}`,
4949
match: matcher,
5050
arg: item.html_url,
51+
quicklookurl: item.html_url,
5152
};
5253
},
5354
);

scripts/my-github-prs.js

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ function run() {
7575
subtitle: subtitle,
7676
match: alfredMatcher(title) + alfredMatcher(repo),
7777
arg: item.html_url,
78+
quicklookurl: item.html_url,
7879
};
7980
},
8081
);

scripts/public-github-repo-search.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,15 @@ function run(argv) {
9393
subtitle: subtitle,
9494
match: alfredMatcher(repo.name),
9595
arg: repo.html_url,
96+
quicklookurl: repo.html_url,
9697
mods: {
9798
shift: {
9899
subtitle: `⇧: Search Issues (${repo.open_issues} open)`,
99100
arg: repo.full_name,
100101
},
101102
cmd: {
102103
arg: secondUrl,
103-
subtitle: `⌘: Open "${secondUrl}"`
104+
subtitle: `⌘: Open "${secondUrl}"`,
104105
},
105106
ctrl: {
106107
subtitle: cloneSubtitle,

0 commit comments

Comments
 (0)