The issue has been solved

i also like to remove the is:pr
and is:issue
and leave the sort:updated-desc
:

the one click link under the search bar reset it to is:pr is:open
if i am in PR :(
posted by muescha over 5 years ago
@muescha commented on Nov 30, 2019, 1:58 AM GMT+1:
i also like to remove the is:pr
and is:issue
and leave the sort:updated-desc
:
the one click link under the search bar reset it to is:pr is:open
if i am in PR :(
There is an useful UserScript for that: GitHub Latest.
posted by jerone over 5 years ago
posted by fregante over 5 years ago 
remove this query with a click?
I think we can just replace the selected Open or Closed link:
<img width="310" alt="Screenshot 2019-11-30 at 17 27 47" src="https://user-images.githubusercontent.com/1402241/69899313-db179780-1396-11ea-950b-d4174178bd7c.png">
In this case, the Open links to the same page you're on, which is useless.
On https://github.com/sindresorhus/refined-github/issues, the Open link should be replaced from:
to:
Here's some untested code, probably 80% of the feature:
const currentQuery = new URLSearchParams(location.search).get('q') ?? select('#js-issues-search').value;
for (const link of select.all('open, close')) {
const linkSearchParams = new URLSearchParams(link.search);
const linkQuery = linkSearchParams.get('q');
if (linkQuery === currentQuery) {
linkSearchParams.set('q', linkQuery.replace(/is:open|is:closed/, '').trim())
link.search = String(linkSearchParams);
return; // The next link won't match this condition for sure
}
}
posted by fregante over 5 years ago
On sindresorhus/refined-github/issues, the Open link should be replaced from:
Open button will show all the queries this ways (which I don't felt intuitive), I think adding a all button is much better.
posted by gurrrung over 5 years ago
- Open https://github.com/sindresorhus/refined-github/issues/created_by/fregante
- Open the Author filter
- Click
fregante
What happens? The author:fregante
filter is removed.
This is the same behavior I'm suggesting here: clicking Open (or Closed) will remove is:open
(or is:closed
)
Open/Closed are filters after all and all the filters in that list act exactly the same way: clicking a selected filter removes it.
posted by fregante over 5 years ago
That sounds good, but the downside of this approach is that it is silent. You need to read changelog or stumble on this change by accident to know that now it's working.
posted by mikhaelkh over 5 years ago
That sounds good, but the downside of this approach is that it is silent. You need to read changelog or stumble on this change by accident to know that now it's working.
We have a lot of features like that. This specific feature can be replicated without buttons (i.e. just select and delete those 7 characters from the query) so it would make even more sense as "hidden" shortcut.
Adding a button for every feature (ours or GitHub’s) will just create a cluttered site.
posted by fregante over 5 years ago
clicking Open (or Closed) will remove is:open
(or is:closed
)
If this is implemented, I would suggest to alter the closed icon.
If you select an author, label or any other dropdown, it is checked with an ✔ (check).
Currently, the closed status has that same ✔ (check) icon. Which confuses me; is the closed status now checked or not?!
Maybe just removing both icons, and prepending the ✔ (check) icon when it is selected.
posted by jerone over 5 years ago
Interesting point, I wouldn't mind removing the icons altogether simply to reduce noise and add space for a possible is:merged
toggle in the future (open / closed / merged)
posted by fregante over 5 years ago
posted by issuehunt-app[bot] about 5 years ago 
i would suggest to have:
1,353 All | 80 Open | 1,273 Closed
or
80 Open | 1,273 Closed | 1,353 All
posted by muescha about 5 years ago
posted by issuehunt-app[bot] about 5 years ago