I want to create a new function in vim that pastes something like
<html> <head> </head> </html> into the current buffer. How do I write this as a multiline string? As single lines I would have to write
0put="<html>" 0put="<head>" 0put="</head>" 0put="</html>"