We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
:r file
:r !command
The :r file and :r !command commands do not work as expected in the VSCodeVim extension. In Vim:
However, in the VSCodeVim extension, these commands either fail or do not produce the expected result.
Steps to reproduce the behavior:
:r filename
filename
:r !ls
N/A
This is an essential feature in Vim for inserting file contents and shell command outputs. It would be great to have it working in VSCodeVim.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
:r file
or:r !command
doesn't work in VSCodeVimDescribe the bug
The
:r file
and:r !command
commands do not work as expected in the VSCodeVim extension.In Vim:
:r file
should read the contents of a file into the current buffer.:r !command
should execute a shell command and insert the output into the buffer.However, in the VSCodeVim extension, these commands either fail or do not produce the expected result.
To Reproduce
Steps to reproduce the behavior:
:r filename
(wherefilename
is a valid file path).:r !ls
(or another valid shell command).Expected behavior
:r file
should read the contents of the file and insert them into the current buffer.:r !command
should execute the command and insert the output into the buffer.Screenshots
N/A
Environment :
Additional context
This is an essential feature in Vim for inserting file contents and shell command outputs. It would be great to have it working in VSCodeVim.
The text was updated successfully, but these errors were encountered: