We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried configuring this plugin to search stuff on nix packages repo.
Config( prefix: "?", engines: [ Custom( name: "google", url: "google.com/search?q={}", ), Custom( name: "nix packages", url: "search.nixos.org/packages?query={}&channel=unstable", ), ], )
Code above works, but the "channel=unstable" part is ignored.
When doing this :
Config( prefix: "?", engines: [ Custom( name: "google", url: "google.com/search?q={}", ), Custom( name: "nix packages", url: "search.nixos.org/packages?channel=unstable&query={}", ), ], )
It does not work with the query.
I believe the string is truncated when finding a &.
&
The text was updated successfully, but these errors were encountered:
'
Hi @Vagahbond, I opened a PR that fixes your issue. I don't know if your problem still bothers you, but you can check out my fork with the fix and build it yourself. Fork: https://github.com/FromWau/plugin-websearch/tree/main
Instructions if u need them:
git clone https://github.com/FromWau/plugin-websearch.git ~/plugin-websearch
cd ~/plugin-websearch
cargo build --release
.so
cp -p ~/plugin-websearch/target/release/libwebsearch.so ~/.config/anyrun/plugins/
Sorry, something went wrong.
Hi, thanks for notifying me, I will check that when I see my computer again
Hey, so using your fork as a flake input for my anyrun config the issue is effectively fixed !
Successfully merging a pull request may close this issue.
I tried configuring this plugin to search stuff on nix packages repo.
Code above works, but the "channel=unstable" part is ignored.
When doing this :
It does not work with the query.
I believe the string is truncated when finding a
&
.The text was updated successfully, but these errors were encountered: