Terminal Output in Vim
Published on
Updated on
Warning: This post has not been modified
for over 2 years. For technical posts,
make sure that it is still relevant.
In Vim you can output the result of a command below your cursor by using :r!
.
Examples:
Hello World
:r! echo Hello World
The current timestamp
:r! echo "[$(date '+\%Y-\%m-\%d \%H:\%M:\%S')]"
Outputs: [2021-06-18 16:13:19]