Skip to content

Commit

Permalink
Commando: Exclude docs from "everything" search for now
Browse files Browse the repository at this point in the history
(integrated from master branch change 9.2.1-280-g5db0e45 by Nathan Rijksen <[email protected]>)
  • Loading branch information
Naatan committed Sep 14, 2015
1 parent f26ccf1 commit b6ca48d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/scope_combined/content/everything.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
var length = 0;
for (let id in scopes)
{
if (id.indexOf("scope-combined") != -1 || id == "scope-shell" || id == "scope-packages") continue;
if (id.indexOf("scope-combined") != -1 || id == "scope-shell" || id == "scope-packages" || id == "scope-docs") continue;
if (subscope && subscope.scope != id) continue;
_scopes[id] = scopes[id];
length++;
Expand Down

0 comments on commit b6ca48d

Please sign in to comment.