IDE 与 vim 中的制表符/空格缩进问题
对于一个 python 项目,我正在尝试一个来自 vim 的 IDE,但我对我的代码的显示方式有疑问。缩进。许多行应该缩进,因为它们位于 if-then-else 语句内。
在 SPE 和 netbeans 中,有许多行的缩进空间(四个)被折叠。
但我用 tabnanny 和 pylint 检查了文件,看不到缩进问题。并且该代码到目前为止一直在运行。
我如何检查?
netbeans 中的“显示空白”开关在哪里?
For a python project I am trying an IDE, coming from vim but I have troube how my code is shown resp. indentation. Many lines should be indented because they are inside if-then-else statements.
In SPE and netbeans there are many lines where the indention-space (four) are collapsed.
But I checked the files with tabnanny and pylint and cant see indention problems. ANd the code has been running up to now.
How can i check that?
Where is the "show whitespace" toggle in netbeans?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我同时使用 netbeans 并且喜欢它。
是的,我将所有空格转换为制表符,并在 php 和 python
方面将其重新制表符为 4
I use netbeans meanwhile and like it.
Yes I converted all spaces to tabs and retab it to 4 in php and python
regards