The org-mode manual mentions a number of properties that can control the behavior of capture templates, but I'm not sure how to use them. The manual itself doesn't include any template examples that use them, and a bit of Googling doesn't turn anything up, either.
I'm trying to use two of the properties in particular: :kill-buffer and either :prepend (if it works with tables) or else :table-line-pos. I'm trying to set up a template for a writing log that adds a new line at the top of a table.
What I tried first, treating them like tags, was this:
("w" "Writing log" table-line (file "~/Dropbox/workrecord.org")
"|%U|%A||%?|" :prepend:kill-buffer)
But neither property took. It doesn't work either if I only include :killbuffer. If I need to use :table-line-pos, there's the added difficulty of knowing the syntax for including the argument I+1.
Any ideas?