vim:tabs
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
vim:tabs [2016/10/13 00:23] – created peter | vim:tabs [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== VIM - Tabs ====== | ====== VIM - Tabs ====== | ||
- | Popular tab styles include | + | Popular tab styles include: |
* Tabs are eight columns wide. Each indentation level is one tab. (Popular with the Linux kernel.) | * Tabs are eight columns wide. Each indentation level is one tab. (Popular with the Linux kernel.) | ||
Line 14: | Line 14: | ||
* softtabstop. | * softtabstop. | ||
+ | ---- | ||
===== tabstop ===== | ===== tabstop ===== | ||
Line 23: | Line 24: | ||
This is the only command here that will affect how existing text displays. | This is the only command here that will affect how existing text displays. | ||
+ | ---- | ||
===== expandtab ===== | ===== expandtab ===== | ||
Line 28: | Line 30: | ||
When expandtab is set, hitting Tab in insert mode will produce the appropriate number of spaces. | When expandtab is set, hitting Tab in insert mode will produce the appropriate number of spaces. | ||
+ | ---- | ||
===== shiftwidth ===== | ===== shiftwidth ===== | ||
Line 33: | Line 36: | ||
Set shiftwidth to control how many columns text is indented with the reindent operations (<< and >>) and automatic C-style indentation. | Set shiftwidth to control how many columns text is indented with the reindent operations (<< and >>) and automatic C-style indentation. | ||
+ | ---- | ||
===== softtabstop ===== | ===== softtabstop ===== | ||
Line 38: | Line 42: | ||
Set softtabstop to control how many columns vim uses when you hit Tab in insert mode. If softtabstop is less than tabstop and expandtab is not set, vim will use a combination of tabs and spaces to make up the desired spacing. | Set softtabstop to control how many columns vim uses when you hit Tab in insert mode. If softtabstop is less than tabstop and expandtab is not set, vim will use a combination of tabs and spaces to make up the desired spacing. | ||
+ | ---- | ||
===== Indentation in the real world ===== | ===== Indentation in the real world ===== | ||
Line 67: | Line 72: | ||
... you get the idea. | ... you get the idea. | ||
+ | ---- | ||
===== Remembering these settings ===== | ===== Remembering these settings ===== | ||
Line 85: | Line 91: | ||
You can't just throw this into your .vimrc and expect all to work, though, because vim will flush its syntax highlighting rules when it loads new files. To hijack this process, add syntax files for your favorite languages in $HOME/ | You can't just throw this into your .vimrc and expect all to work, though, because vim will flush its syntax highlighting rules when it loads new files. To hijack this process, add syntax files for your favorite languages in $HOME/ | ||
- | |||
vim/tabs.1476318221.txt.gz · Last modified: 2020/07/15 09:30 (external edit)