# OpenUrl.nvim A Vim/Neovim plugin to open URLs in your default browser. ## Mapping There are no mappings registered by the plugin. You need to map it according to your preference. Here's a quick example: ```vim " OpenUrl.nvim binding nnoremap q :call OpenUrl#UnderCursor() ``` ## investigate.vim integration There's also support for [investigate.vim][investigate.vim]. The following snippet will fallback to investigate.vim's `investigate#Investigate()` if `OpenUrl#GetUrl` can't find a valid URL. ```vim " Use keith/investigate.vim as a fallback, if it's not an URL let g:OpenUrl_DarkInvestigate = 1 ``` [investigate.vim]: https://github.com/keith/investigate.vim