I do not understand what the following line does in .vimrc
nmap <silent> <leader>v :EditConfig<cr>
It seems that
- nmap mean noremap
- silent seems to mean apparently no beep in Vim
- leader seems to mean the first character in the mode :
- v seems to mean visual mode
- EditConfig should be a command in vim in the mode : (However, it is not.)
What does the line mean in .vimrc?