Skip to content

Instantly share code, notes, and snippets.

@luluco250
Last active December 8, 2017 04:47
Show Gist options
  • Save luluco250/ac2ddf3107bc616d764cfc93580acde3 to your computer and use it in GitHub Desktop.
Save luluco250/ac2ddf3107bc616d764cfc93580acde3 to your computer and use it in GitHub Desktop.
Bookmarklet to search cppreference via a browser bookmark, just copy and paste it onto a new bookmark.
javascript: (function() {
const search_text = prompt("Search cppreference");
if (search_text !== null)
window.location.href =
"http://en.cppreference.com/mwiki/index.php?title=Special%3ASearch&search="
+ search_text;
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment