当我编辑“* .py”文件而不是任何其他文件时,如何让Tab键插入4个空格?
根据Vim and PEP 8 — Style Guide for Python Code的建议,我安装了vim-flake8(和vim-pathogen)。当违反PEP8样式准则时,会发出警告。这是伟大的,但我希望标签在编辑python文件时自动扩展。我想有标签键实际插入标签时,编辑其他类型的文件。
换句话说,我想要以下应用,当我编辑python文件,只有python文件:
set expandtab " tabs are converted to spaces set tabstop=4 " numbers of spaces of tab character set shiftwidth=4 " numbers of spaces to (auto)indent
autocmd Filetype python setlocal expandtab tabstop=4 shiftwidth=4
甚至更短:
au Filetype python setl et ts=4 sw=4