I'd like to create a mapping for :vsplit .
.
I tried adding this to .vimrc
...
nmap <F7> verticalsplit .
However, when I hit <F7>
it goes into insert mode and inserts "calsplit .tttt
". (Why "tttt"?)
Just put a :
before it and a <CR>
after.
nmap <F7> :vsplit .<CR>
nmap
starts in normal mode so you have to give it exactly what you'd type.
You get "tttt" because your mapping was typing v
(to go into Visual mode), e
(jump to the end of a word), r
(go into replace-mode), t
(type a t and replace whatever is visually selected with t
s).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With