Hello World from OSS Silicon Valley


HowToUse/Vim/7.2

_ Prerequisite

_ Install&Setup

_ Setup configuration file

Step.1
Edit .vimrc
$ vi ~/.vimrc
ITEMDESCRIPTION
tabstopnumber of space when we enter tab
shiftwidthcontrol how many columns text is indented with the reindent operations (<< and >>) and automatic C-style indentation.
softtabstopcontrol 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.
expandtabConvert tab into space

Example

set tabstop=4
set shiftwidth=4
set expandtab

_ HowToUse

_ Editing

TBD

_ Author

S.Yatsuzuka

Last-modified: 2016-04-09 (Sat) 21:59:29 (2938d)