User Tools

Site Tools


vim:tabs

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
vim:tabs [2016/10/13 00:23] – created petervim: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.  If softtabstop equals tabstop and expandtab is not set, vim will always use tabs.  When expandtab is set, vim will always use the appropriate number of spaces. 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.  If softtabstop equals tabstop and expandtab is not set, vim will always use tabs.  When expandtab is set, vim will always use the appropriate number of spaces.
  
 +----
  
 ===== 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/.vim/syntax/. For C, the syntax file is c.vim. (Look in $VIM/syntax for a list of existing files.) vim will load the system-wide syntax file and then run your custom file, and you'll be able to visualize your tabs every time you load a C file.  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/syntax/. For C, the syntax file is c.vim. (Look in $VIM/syntax for a list of existing files.) vim will load the system-wide syntax file and then run your custom file, and you'll be able to visualize your tabs every time you load a C file. 
- 
  
vim/tabs.1476318221.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki