Sorting Text

Keeping lists alphabetized is important for organized, maintainable code. Fortunately, Vim has a number of ways to sort lines.

Continue reading »

Code Reformatting

When I wind up with code that is not well formatted, the = command comes in handy. This command runs applies a formatter to your motion or visual selection. So two handy sequences of commands I keep at hand are gg=G and =%. The later takes advantage of the matchit plugin which enhances % to match a broad array of open close blocks like those found in the Ruby programming language.

Continue reading »

Copy/Pasta Vim Style

At this point in the technology age, nothing is more powerful and necessary to anyone editing text than being able to copy and paste. Here’s how to do it Vim style:

Continue reading »

Jump to the next commented line

If you’ve ever needed to jump quickly to the next commented line of code, there’s a trick for that. You’ll need to add a new commands to Vim, but that’s as easy as adding a few lines to your .vimrc file. The following maps ]c to jump to the next commented line of code and [c to the previous.

Continue reading »
Top