User Tools

Site Tools


vim:abbreviations

This is an old revision of the document!


VIM - Abbreviations

VIM allows abbreviations to be set.


The Basics

Abbreviations can be assigned with the command :ab[breviate].

To have abbreviations only work whilst in insert mode use :iabbrev:

:iabbrev [<expr>] [<buffer>] {abbreviation} {expansion}

NOTE:

  • Anything inside a [] is optional.
  • <expr> means that you could use a vimscript expression to create the expansion.
  • <buffer> means that it only applies to the current buffer.
  • abbreviation is the thing you type and that will be replaced by the expansion.

Examples

:ab Lunix Linux
:ab hapy happy
:ab hte the
:ab BTC The Big Cat
:ab myemail someemail@somewhere.com
 
:iabbrev Lunix Linux

NOTE: The words will be automatically corrected just after you typed them.

WARNING: Be careful with the abbreviations that are set, as they may prevent using a term for another purpose.

  • For example, an entry for BTC might want to be entered without expanding into the separate words.
  • To avoid expansion in insert mode, type CTRL-V after the last character of the abbreviation (on Windows, type CTRL-Q instead of CTRL-V).

:iabbrev <buffer> con@ console.log();<Left><Left>

File Specific Abbreviations

Abbreviations can also be set in autocommands to make file specific abbreviations automatically.

If you put something like this in your .vimrc.

.vimrc
:autocmd FileType html,javascript,typescript,vue
  \ :iabbrev <buffer> some-abbreviation some-expansion

NOTE: It would make some-abbreviation available to you in html, javascript, typescript and vue files.


To remove all abbreviations

:abclear
vim/abbreviations.1658246109.txt.gz · Last modified: 2022/07/19 15:55 by 85.203.36.249

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki