I copy and paste URLs alot while I'm working so I have a little Apple script that pulls the URL Safari's active tab and wire vim so it copies that URL into the `v` register so at anytime, I can do `@v` to paste the URL:
```
autocmd FocusGained * let @v = substitute(system('~/Documents/scripts/url'), '\n$', '', '')
```