Support "bang" operations on selected code blocks
See original GitHub issueIs your feature request related to a problem? Please describe.
With standard Vim I regularly use block-select to pick a group of lines and then pass them to a piped Unix filter, e.g. :'<,'>!sort|uniq
. As best I can tell, this isn’t possible with the VSC Vim plugin today.
Describe the solution you’d like
Support “bang” (!
) operations when in command mode
Describe alternatives you’ve considered I don’t know another way to do this. Right now if it is important enough I cut and paste the content into an empty document in Vim, do the operation there, then cut and paste the content back in to Visual Studio Code.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:9 (2 by maintainers)
Top Results From Across the Web
1 Code::Blocks Project Management
Code::Blocks makes it possible to include a predefined content at the beginning of a file automatically when creating new C/C++ sources and headers....
Read more >Using Code Blocks - HelpDocs Support
In the article editor click Blocks · Select Code Block · Paste the code into the code block · Click Automatic to select...
Read more >Logical NOT (!) - JavaScript - MDN Web Docs - Mozilla
The logical NOT (!) (logical complement, negation) operator takes truth to falsity and vice versa. It is typically used with boolean (logical) values....
Read more >Code::Blocks Student Manual
The purpose of this manual is to help the student develop the skills to organize program coding and develop sound techniques for finding...
Read more >Complying with COPPA: Frequently Asked Questions
In determining whether a particular site or service is directed to children, the FTC will consider the factors set forth in the Rule....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you very much, JR!
Hey @sjackman, I separated the filter operators like
V!
and!!
into a separate PR, which is pretty much done now. I’ll be submitting it asap. Thanks!