In MySQL, you can terminate a select query with \G (as opposed to \g) to display the results vertically:
select * from foo \G
***************
id: 1
bar: Hello
***************
id: 2
bar: World
How can one do the same thing for PostgreSQL using psql?