Tag: Vim

Everything you need to know about Vim and text on Linux (Slides)

Last week I had the opportunity to present at Open Source Summit North America (2023) in the Open Source On-Ramp track. I promised to upload my slides by Monday of this week (oops) but didn’t factor in getting COVID. Apologies to anybody who came looking for the slides previously,...

See you at Open Source Summit North America!

In just a few weeks I’m going to be dusting off the slide clicker and giving two talks at Open Source Summit North America. I’ll be giving one talk on databases and containers, and another talk about working with text on Linux using Vim and other tools. Kind of...

How I got started with Vim

Yesterday I made an offhand comment about the long story of how I got started with Vim, so I figured I’d follow up today with that. That story takes us all the way back to 1999....

Is there a note-taking app that beats Vim, Markdown, and Git?

Usually I avoid post titles / headlines in the form of a question, but I’m genuinely curious: Have you found a good note-taking app that’s ultimately better than just plain text files in Markdown with Vim (optionally synced with Git)?...

Tips: Making Vim easy

Vim’s flexibility and countless features are a major asset for experienced users, but a challenge for newbies. If you’ve always wanted to try Vim but were put off by your first attempts, you can start off gradually by getting to know Vim’s GUI and easy mode. This article is...

Vim tips: Using tabs

Before Vim 7.0 was released last May, I usually had six or seven xterms or Konsole windows open, each with a single Vim session in which I was editing a single file. This takes up a lot of screen space, and isn’t very efficient. With Vim 7.0, users now...

Vim tips: Working with external commands

Vim is a powerful editing tool, but there are some things it just can’t do. However, Vim lets you access shell commands and utilities without leaving Vim, and that lets you perform some amazing tricks. If you run :shell or just :sh while you’re in the editor, Vim (or...

Vim tips: Using Vim mappings and abbreviations

Vim ships with a lot of useful functions that make life easier when you’re editing text, but Vim is also an extremely extensible editor. If you find yourself typing the same long commands or strings of text over and over again, it’s time you learned how to set mappings...

Vim tips: Folding fun

The problem with writing and editing on a computer, versus having words on paper, is that it’s usually hard to compare text from different sections of a document when they don’t fit on the screen together. One way to do it is to use Vim’s viewports feature. Another is...

Vim tips: Moving around using marks and jumps

Editing in Vim can be a breeze, if you know how to make use of its more advanced features. Moving around files can feel like a slog if you’re stuck with the basic movement keys, but editing is effortless when you have command of marks and jumps. Basically, a...