Vim is still one of the most powerful text
editors out there. One of its more useful features is that it allows you to set up your
own abbreviations and mappings. These can speed up the typing of stock
phrases or do far more complicated things. Enter these in command mode to
try them out, or add them to your ~/.vimrc (without the initial colon) if you want them to stay.
Tip of the Trade: Learn how to set your own abbreviations and mappings in the ever-useful Vim.
Abbreviations (use iab for abbreviations that work only in insert
mode or ab for abbreviations that work in any mode) and mappings
(use imap for mappings that work in insert mode, or map for
mappings that work in multiple modes) are very similar. Broadly speaking, if
you’re doing something you’d normally use the command-line mode for, use
a mapping. If you want a set of characters to expand into a longer string
while you’re typing, use an abbreviation.
Recent Tips » Unicode Characters in Vim » SSH From Your Mobile Device » Recovering Deleted Files With lsof Read All Tips of the Trade |
:iab YDATE =strftime("%a %b %d %T %Y") |
If you type YDATE, this will output a string like ‘Mon May 04
11:01:58 2009’. (You can also use abbreviations to fix common typos,
e.g.,
:iab teh the
)
:imap gqap :map gqap |
:imap ,u yypv$r-o :imap ,U yypv$r=o |
:map ,L :%s/(.)n(w)/1 2/ |
This is helpful when you’re editing config files that need not have line
breaks (e.g. ~/.ssh/authorized_keys2), but you have your textwidth
set for normal reading of textfiles.
To list all the mappings that have been set, use :map.
Property of TechnologyAdvice. © 2025 TechnologyAdvice. All Rights Reserved
Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.