展开标签到vim中的空格只在python文件?

前端之家收集整理的这篇文章主要介绍了展开标签到vim中的空格只在python文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我编辑“* .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
原文链接:https://www.f2er.com/bash/389497.html

猜你在找的Bash相关文章