147

TechnoSophos: Create A Built-in Vim Cheatsheet

 6 years ago
source link: http://technosophos.com/2014/10/09/create-built-in-vim-cheatsheet.html
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Create A Built-in Vim Cheatsheet


vimcheat.png

I'm always forgetting the cool Vim tricks I hear about. At first I kept a text file of various tips and commands. Then I realized how dumb that idea was. Why not make it easy on myself? So I created my own Vim help module.

Now whenever I want that quick reminder, I can type :h myhelp in Vim and see my personalized cheat sheet. And it's really simple to do. Here's how.

Step 1: Create a Simple Vim Plugin

This part is simple:

That's it. I use the Janus Vim setup, so I put the myhelp/ directory in ~/.janus. In any other system, you can put your myhelp/ directory wherever your Vim searches for plugins.

Step 2: Create Some Help!

The Vim help text syntax is basic. You can read all about it in :h helphelp. Here's a snippet of my file:

You can view the entire file in my GitHub repo.

The contents of the first line are pretty much pre-determined:

The *myhelp* registers a tag. In short, it tells Vim that when I type :h myhelp I want it to go to this file. In fact, anytime you want to create a new tag, just surround a string with asterisks (*foo*). Just remember that your tags must be unique to the entire help system, including other Vim plugins.

After that, the file format is really up to you. I built a fancy table of contents with internal tag links (|myhelp-normal| links to the tag *myhelp-normal*). Vim treats the long lines of === as section breaks.

From there, I just wrote some free-form text.

Step 3: Generate the Tags File

Vim uses a special file, called a tags file, to correlate tags (like *myhelp*) to the document that contains the file (myhelp.txt). While these are just plain text files that you could create on your own, Vim will create them for you with a simple command:

Point it to the directory that contains your help text. helpt will walk all of the subdirectories looking for helptext and generating tags files.

Once you run that, your ready to use your personal cheat sheet.

You may need to restart Vim, but at this point :h myhelp should open your custom help file.



About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK