V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
johnsneakers
V2EX  ›  Python

用 VIM 写 python 怎么老是会遇到缩进问题(IndentationError: unexpected indent)

  •  
  •   johnsneakers · 2015-01-04 16:42:34 +08:00 · 12890 次点击
    这是一个创建于 3371 天前的主题,其中的信息可能已经有所发展或是发生改变。

    这种情况不是必现,偶尔会有,我只有拿到pycharm才发现多出那么一点。。。求vim python配置

    5 条回复    2015-01-05 09:13:36 +08:00
    jamesxu
        1
    jamesxu  
       2015-01-04 16:56:07 +08:00   ❤️ 1
    请用 space 缩进:
    set expandtab
    set tabstop=4
    set shiftwidth=4
    ToughGuy
        2
    ToughGuy  
       2015-01-04 17:23:15 +08:00   ❤️ 1
    v2014
        3
    v2014  
       2015-01-04 18:58:04 +08:00
    估计是tab键和空格键混用了
    ShiehShieh
        4
    ShiehShieh  
       2015-01-04 19:07:00 +08:00   ❤️ 1
    mugbya
        5
    mugbya  
       2015-01-05 09:13:36 +08:00
    注意别混用就好,那么就一直tab,要么就全空格。如果你写的代码想在各个平台下运行,最好用空格。

    这是我的vim配置,我嫌麻烦,所以每次用的tab(4格)

    set tabstop=8 " 让一个tab等于8个空格,即默认
    set sts=4
    set sw=4
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3163 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 28ms · UTC 14:27 · PVG 22:27 · LAX 07:27 · JFK 10:27
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.