Let's say I have the next mapping:
imap a AAA
vmap b BBB
I need a way to get value of mappings. The next is not suitable for me, because I need to operate by returned mapped values:
imap a
vmap b
I'm looking for for something like these functions:
let a = getimap("a") => a = "AAA"
let b = getvmap("b") => b = "BBB"