about summary refs log tree commit diff
path: root/content/sw-notes/vim-paste-command.md
blob: 841d4bebc5ecb977669d1cd939db5459f1147da8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
---
title: "Paste command output into vim"
date: 2024-04-24
translationKey: vim-paste-command
categories: [software, guide]
tags: [vim]
---

To paste the command output into vim, type `:r!<command>`.
For example, to paste current date in ISO 8601 into vim, I can type:
`r!date -I`.