I like to take minutes for meetings using vim+Markdown(CommonMark)
I like having something like this
# Meeting Name - 2018-02-25
The way I accomplish this is
i# Meeting Name - ^[:put =strftime('%F')<cr>kJ
Is there a better way? I know you can do :-1put ... and it will put things on the previous line, but is there a way to :put at the end of the line? (obviously I could make a macro/map, but is there a better way with just put?)
:h i_CTRL-Rand specifically:h i_CTRL-R_=– statox Feb 26 '18 at 10:19^r- and @statox thanks for linking to that docs, because that's way more useful than I imagined! There are a number of times that I've doneitype some things <esc>pAtype some more things.