I want to write a vim function that includes pasting from the clipboard (windows if it matters)
I think it should be something like
function MyPastingFunc()
"+p "paste from clipboard
"do more stuff
endfunction
Of course the "+p is just a comment in the .vim file. How can I make this work?