By default searches google with “reddit” append to the search, because reddit search is bad . use ⌥ to search on reddit directly.
(just select the text in the below code snippet, PopClip should show up, click install, and done, it’s that simple!!)
// # popclip
// name: Reddit Search | ⌥ for Reddit.com Search
// icon: iconify:flat-color-icons:reddit
// requirements: [text, "!url"]
// lang: js
const query = encodeURIComponent(popclip.input.text);
if (popclip.modifiers.option) {
popclip.openUrl("https://www.reddit.com/search/?q=" + query);
} else {
popclip.openUrl("https://www.google.com/search?q=" + query + "+reddit");
}