# Create the directories you need$ sudo mkdir -p /opt/local/bin# Download, compile, and install the latest Vim$ cd ~$ git clone https://github.com/vim/vim.git$ cd vim$ ./configure --prefix=/opt/local$ make$ sudo make install# Add the binary to your path, ahead of /usr/bin$ echo 'PATH=/opt/local/bin:$PATH' >> ~/.bash_profile# Reload bash_profile so the changes take effect in this window$ source ~/.bash_profile"
let g:chrome_exe = 'C:/.../Google/Chrome/Application/chrome.exe'function OpenURL()" copy the line and put it in the register *normal "*yy:execute "silent !start ".g:chrome_exe." ".getreg("*")endfunction
map ,url :call OpenURL()<CR>