DEV Community

Discussion on: Vim Filters

Collapse
 
joschasa profile image
André

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.

Collapse
 
rpalo profile image
Ryan Palo

Cool! I’ll have to put those ones on my cheat sheet! Thanks!