]> Sergey Matveev's repositories - dotfiles.git/blob - vim/.vim/plugin/whereami.vim
Initial
[dotfiles.git] / vim / .vim / plugin / whereami.vim
1 function! WhereAmI()
2     let where = expand('%:p') . ":" . line('.')
3     let @* = where
4     echomsg where
5 endfunction
6
7 nmap <leader>w :call WhereAmI()<CR>