Quick tip time! Let's talk about Vim filters. This is a way to execute any external command and pipe the results into your current buffer. This ...
For further actions, you may consider blocking this person and/or reporting abuse
By the way, the last two examples can be achieved by only using vim features as well:
:sort will sort all lines in the current buffer and gU will uppercase any text given, so 'gggUG' would uppercase the whole buffer.
Cool! I’ll have to put those ones on my cheat sheet! Thanks!
This is awesome! I'm huge fan-girl of VIM and love reading tricks like this. :)
Glad you like it!
Awesome! Very useful. Thanks!
This is really useful! Was not aware vim had these superpowers built-in!