vim:abbreviations
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
vim:abbreviations [2022/07/19 15:34] – 85.203.36.253 | vim:abbreviations [2022/07/19 17:22] (current) – [Escaping insert mode] 185.192.69.72 | ||
---|---|---|---|
Line 2: | Line 2: | ||
VIM allows abbreviations to be set. | VIM allows abbreviations to be set. | ||
+ | |||
+ | This can support: | ||
+ | |||
+ | * To automate things in insert mode. | ||
+ | * To make it quicker to type a long word or sentence with just a few characters. | ||
+ | * Correcting Typos. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== The Basics ===== | ||
+ | |||
+ | Abbreviations can be assigned with the command **: | ||
+ | |||
+ | To have abbreviations only work whilst in insert mode use **: | ||
+ | |||
+ | <code bash> | ||
+ | :iabbrev [< | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * Anything inside a **[]** is optional. | ||
+ | * **< | ||
+ | * **< | ||
+ | * **abbreviation** is the thing you type and that will be replaced by the **expansion**. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Examples ===== | ||
<code vim> | <code vim> | ||
- | :abbr Lunix Linux | + | :ab Lunix Linux |
- | :abbr hapy happy | + | :ab hapy happy |
- | :abbr hte the | + | :ab hte the |
- | :abbr BTC The Big Cat | + | :ab BTC The Big Cat |
+ | :ab myemail someemail@somewhere.com | ||
+ | |||
+ | :iabbrev Lunix Linux | ||
</ | </ | ||
Line 21: | Line 56: | ||
* 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**). | * 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**). | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Advanced Usage ===== | ||
+ | |||
+ | Abbreviations can use special sequences like **< | ||
+ | |||
+ | * This gives us the power to move around the cursor and create more elaborate snippets. | ||
+ | |||
+ | <code vim> | ||
+ | :iabbrev < | ||
+ | </ | ||
+ | |||
+ | ...converts to: | ||
+ | |||
+ | <code bash> | ||
+ | console.log( ); | ||
+ | </ | ||
+ | |||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * There is a space between the parenthesis in the log function, because we chose to " | ||
+ | * Vim will replace the abbreviation after we press a " | ||
+ | * Basically all the letters and a few special characters are considered " | ||
+ | * Might want to check **:help ' | ||
+ | * If that extra space is not wanted then you can begin the expansion with the sequence **< | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Advanced Usage 2 ===== | ||
+ | |||
+ | <code vim> | ||
+ | :iabbrev < | ||
+ | </ | ||
+ | |||
+ | ...converts to: | ||
+ | |||
+ | <code bash> | ||
+ | (async function() { | ||
+ | |||
+ | })(); | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * The **@** sign in this case is not important. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Escaping insert mode ==== | ||
+ | |||
+ | All those **< | ||
+ | |||
+ | We can " | ||
+ | |||
+ | <code vim> | ||
+ | :iabbrev < | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * We replaced the five **< | ||
+ | * In VIM, you would press that **4hi** yourself. | ||
+ | * In fact, since we are just entering in insert mode to make one command (4h) and then going back we could simplify it a little bit. | ||
+ | |||
+ | </ | ||
+ | |||
+ | <code vim> | ||
+ | :iabbrev < | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | |||
+ | ===== 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. | ||
+ | |||
+ | <file bash .vimrc> | ||
+ | :autocmd FileType html, | ||
+ | \ :iabbrev < | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
</ | </ | ||
vim/abbreviations.1658244862.txt.gz · Last modified: 2022/07/19 15:34 by 85.203.36.253