.vimrc
基本介绍:so peter.txt
:h vimrc
:scriptnames
function! Browser()
let line = getline(".")
exec "!firefox ".line
endfunction
map ,w :call Browser()<cr>
imap jj <esc>
:h map.txt
set nu
set tabstop=2
set tabstop=4
:h option-list
:set nonu
:set nu?
:set tabstop?
:options
autocmd FileType c set tabstop=4
autocmd FileType html set tabstop=2
autocmd BufWritePost ~/my_proj/* !ctags -f ~/my_proj/tags ~/my_proj/*
:h autocmd.txt
:h usr_05.txt