|
发表于 2010-3-23 23:17:02
|
显示全部楼层
我的.vimrc其中的一段- if has("autocmd")
- filetype plugin indent on
- [color="Red"] autocmd FileType text,c setlocal textwidth=78
- autocmd Filetype scheme,sml,ocaml,haskell,ruby
- \ setlocal expandtab shiftwidth=2 textwidth=78
- autocmd Filetype sh,perl,python
- \ setlocal expandtab shiftwidth=4 textwidth=78[/color]
- " always jump to the last known cursor position
- autocmd BufReadPost *
- \ if line("'"") > 1 && line("'"") <= line("$") |
- \ exe "normal! g`"" |
- \ endif
- endif " has("autocmd")
复制代码 BTW. 官方的Python style guide建议使用的缩进是[color="Blue"]四个空格,而不是[color="Blue"]四个空格宽的一个Tab,建议遵守。 |
|