You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use the :%! etc a lot. For instance I use sort -u on my import statements in python, or I use a bash script to generate commands etc. Adding this feature would be very nice 👍
Thanks in advance,
Kfir.
The text was updated successfully, but these errors were encountered:
This PR ports the :!{cmd} bang command from Vim, allowing external shell commands to be run directly from Vim's command mode.
Key features:
- :!{cmd} executes the shell command
- :{range}!{cmd} executes the shell command, pipes the line range to stdin, and replaces the line range with the output from stdout and stderr
- Embedded bangs are replaced with the previous bang command (e.g. :!dir => :!echo ! will execute echo dir)
- Cross-platform, supports Unix and Windows shells
Fixes#3154, fixes#3136, fixes#3069, fixes#4920
Taken from https://github.com/VSCodeVim/Vim/blob/master/ROADMAP.md
I use the
:%!
etc a lot. For instance I usesort -u
on my import statements in python, or I use a bash script to generate commands etc. Adding this feature would be very nice 👍Thanks in advance,
Kfir.
The text was updated successfully, but these errors were encountered: