I am a vim user.
I like to use CLI vim rather than GUI MacVim.
I usually use vim in iTerm2 terminal which has already a lot of shortcuts using Command Key.
I want to map my custom shortcuts but it's impossible because of those already mapped keys.
For example,
I want to map NERDTreeCommenterToggle command to 'Command-/'.
So I wrote in my .vimrc like below.
map <D-/> <Plug>NERDCommenterToggle
But it doesn't work because "D-/" key is already mapped to 'Find Cursor' in iTerm2.
Does anybody know how to fix these problems? Thanks in advance.