98
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 05 Jan 2025
98 points (62.4% liked)
Technology
60284 readers
3422 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each another!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, to ask if your bot can be added please contact us.
- Check for duplicates before posting, duplicates may be removed
Approved Bots
founded 2 years ago
MODERATORS
In Firefox, I have had any search starting with "gm" set up to do a Google Maps search. So "gm Omaha" will go to Omaha.
That is, I create a bookmark that's aimed at:
and then in the Bookmark Manager, set the keyword to "gm".
Kagi -- which uses bang prefixes to do searches on external sites -- appears to have done the same thing on the service side with "!gm". So "!gm Omaha". (They normally have their own, OpenStreetMap-based map thing, but if you want to do Google Maps, that'll do it.)
EDIT: For some reason, the Lemmy Web UI seems determined to convert "%s" to "%25s" in the URL above, and I can't seem to find an escape sequence that avoids that. It's intended to just be "%s".
%25 is the URL encoding for 0x25 (or 37 decimal), the ASCII code for the percent sign. Basically it seems to recognize that it is a URL and then URL-encode characters that are not allowed in URLs
Probably it should only do so if the link is actually being hyperlinked which doesn't happen for blockquoted text, so I guess it's probably a Lemmy bug.