Question for wiser vim users than myself: If I delete (say, a line comment) with `D`, how do I paste it as a line of its own without macro trickery involving `o<esc>p`? Is that possible?
You mean that you deleted it with dd? Can you show a before and after of what you're trying to accomplish, because it's very likely possible. I'm just not sure what you're trying to do.
To break a single line into two lines on a whitespace boundary, one pattern I find myself using often is moving the cursor to the whitespace and hitting 'r<return>'.
(The 'r' command replaces the character under the cursor with the next key typed, without going into insert mode.)
well you can do O ctrl-r " <esc> and it will paste it and leave you back in normal mode but that is kinda an anti-pattern. maybe it's time for a remapped keybinding?
try:
nnoremap <leader>p o<esc>p
is it really a requirement to not have a macro/keybinding?