3

几天以来,我正在尝试很多编辑器/IDE。我正在我的 Ubuntu 11.04 机器上寻找适用于 Python 的良好 IDE。在尝试了几乎所有的 IDE 之后,我最终以 Geany 0.20 结束。

除了语法检查/更正之外,一切都按我的要求工作。我还使用了 Eclipse,我非常喜欢在其中检查语法错误。是否有任何插件可以检查/纠正 Geany 上的语法错误?

4

3 回答 3

4

不幸的是,不,这样的插件不存在。但是,您可以将您的想法发送到他们的邮件列表或自己开发,然后发送给他们,因为我认为很多人会从这样的插件中受益(我就是其中之一 :)。

于 2011-08-28T00:32:09.473 回答
1

Expanding upon Vinoth.3v's answer, I implemented it via the following build command (not for python, but the concept is the same)

  • Build (menu bar)
  • Set Build Commands
  • Under 'Independent commands' beside 'Make' I set the command to "jshint %f"
  • Now under Edit -> Preferences -> Keybindings -> toward the bottom I set "Make all" to ctrl+g

with the above settings, I can hit ctrl+g to run jshint on the current file and have the output show up in the Compiler tab of the Messages Window. It's not quite red squiggly lines, but I never trusted those anyway.

于 2015-01-11T01:01:49.017 回答
0

您可以使用编译按钮/菜单来构建它,因此它会显示语法错误。

我在 Geany 上使用 php,效果很好。

于 2013-10-29T19:54:14.990 回答