So I\'ve discovered that a common task for me in Vim is to PUT either to the start of the line or the end of the line. So my mapping could be:
nmap
You can do this using mapping in one line:
nnoremap \p '$"'.v:register.v:count1.'p' nnoremap \P '0"'.v:register.v:count1.'P'