blob: 386ff95d8e9c99ec737f024de8a3a398601d8dab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
// ==UserScript==
// @name GitHub Search Pronto
// @description Search immediately inside a repository without having to wait for the drop-down
// @namespace com.teddywing
// @match https://github.com/*
// ==/UserScript==
// Copyright (c) 2018 Teddy Wing
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
var search_field = document.querySelector('.js-site-search-field');
if (!search_field) {
return;
}
search_field.addEventListener('keydown', function(e) {
var search_drop_down = document.querySelector('.js-jump-to-suggestions-results-container');
var loading_spinner = search_drop_down.querySelector('[alt="Octocat Spinner Icon"]');
if (e.key === 'Enter' &&
(
!is_visible(search_drop_down) ||
(
is_visible(search_drop_down) &&
is_visible(loading_spinner)
)
)
) {
var query = search_field.value;
// Get "https://github.com/owner/repo"
var repo_url = window.location.href.split('/').slice(0, 5).join('/');
window.location.assign(
repo_url +
'/search?q=' +
query +
'&unscoped_q=' +
query
);
}
});
function is_visible(node) {
return node && node.offsetParent !== null;
}
|