Skip to content

Instantly share code, notes, and snippets.

@forivall
Created August 6, 2020 20:25
Show Gist options
  • Save forivall/373425de70964c8c271020cab3650048 to your computer and use it in GitHub Desktop.
Save forivall/373425de70964c8c271020cab3650048 to your computer and use it in GitHub Desktop.
bookmarklet to update links to open vscode
@forivall
Copy link
Author

forivall commented Aug 6, 2020

minified:
javascript:document.querySelector('svg').querySelectorAll('a').forEach(function(a,u){u=new URL(a.href.baseVal,document.location.href);u.protocol='vscode:';u.pathname=u.pathname.replace(/^\/*/,'//file/');a.href.baseVal=u.href})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment