# https://neovim.io/doc/user/insert.html#:read
define-command read -params 1 -docstring 'Insert the file [name] below the cursor' %{
set-register dquote %sh(cat "$1")
execute-keys p
}
2 Likes