vim:tabs
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
vim:tabs [2019/12/04 22:08] – removed peter | vim:tabs [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== VIM - Tabs ====== | ||
+ | |||
+ | Popular tab styles include: | ||
+ | |||
+ | * Tabs are eight columns wide. Each indentation level is one tab. (Popular with the Linux kernel.) | ||
+ | * Tabs are four columns wide. Each indentation level is one tab. (Popular with Windows developers using Visual Studio.) | ||
+ | * Each indentation level is four spaces. | ||
+ | |||
+ | Vim defaults to indent using eight-column tabs, but vim can handle any indentation style using four easy commands: | ||
+ | |||
+ | * tabstop | ||
+ | * shiftwidth | ||
+ | * expandtab | ||
+ | * softtabstop. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== tabstop ===== | ||
+ | |||
+ | Set tabstop to tell vim how many columns a tab counts for. | ||
+ | |||
+ | Linux kernel code expects each tab to be eight columns wide. | ||
+ | Visual Studio expects each tab to be four columns wide. | ||
+ | This is the only command here that will affect how existing text displays. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== expandtab ===== | ||
+ | |||
+ | When expandtab is set, hitting Tab in insert mode will produce the appropriate number of spaces. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== shiftwidth ===== | ||
+ | |||
+ | Set shiftwidth to control how many columns text is indented with the reindent operations (<< and >>) and automatic C-style indentation. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== softtabstop ===== | ||
+ | |||
+ | 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 ===== | ||
+ | |||
+ | Putting it all together, the following incantations will configure vim for each of the cases listed above: | ||
+ | |||
+ | Tabs are eight columns wide. Each indentation level is one tab. (Popular with the Linux kernel.) | ||
+ | |||
+ | :set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab | ||
+ | |||
+ | Tabs are four columns wide. Each indentation level is one tab. (Popular with Windows developers using Visual Studio.) | ||
+ | |||
+ | :set tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab | ||
+ | |||
+ | Each indentation level is four spaces. Tabs are not used. (Popular with Java programmers.) | ||
+ | |||
+ | :set softtabstop=4 shiftwidth=4 expandtab | ||
+ | |||
+ | Just to prove it's possible, here are some more ... creative indentation styles and their vim representation: | ||
+ | |||
+ | Tabs are eight columns wide. Each indentation level is three columns, which may be spaces or tabs. | ||
+ | |||
+ | :set tabstop=8 softtabstop=3 shiftwidth=3 noexpandtab | ||
+ | |||
+ | Tabs are five columns wide. Each indentation level is six columns, which may be spaces or tabs. | ||
+ | |||
+ | :set tabstop=5 softtabstop=6 shiftwidth=6 noexpandtab | ||
+ | |||
+ | ... you get the idea. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Remembering these settings ===== | ||
+ | |||
+ | So how do you make vim remember what indentation to use for all of your files? vim will read your personal startup file every time it runs; you can put your favourite indentation incantations there. (That' | ||
+ | |||
+ | /* vim: set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab : */ | ||
+ | |||
+ | (Obviously, wrap the text in your favorite comments to make sure your compiler doesn' | ||
+ | |||
+ | vim will also read .vimrc in the current directory (when the exrc option is set in your normal vimrc), which is useful when editing large numbers of source files in the same directory, or to avoid corrupting source files you don't control. | ||
+ | Visualizing tabs | ||
+ | |||
+ | So what do you do when you open a new source file and you're trying to figure out what tab style the last author used? (And how do you make sure you're doing the Right Thing to avoid mixing tab styles in your new code intermixed with the old code?) I find syntax highlighting useful. In gvim, I like seeing my tabs with underlines. (This tends not to work well on the text terminal for reasons I haven' | ||
+ | |||
+ | syntax match Tab /\t/ | ||
+ | hi Tab gui=underline guifg=blue ctermbg=blue | ||
+ | |||
+ | 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.1575497330.txt.gz · Last modified: 2020/07/15 09:30 (external edit)