哪些免费的 JavaScript IDE 支持用户定义变量的自动完成,以及"jump to definition"?



我被Visual Studio宠坏了(但正在寻找替代方案)。所以在下面的示例中,如果我输入 FirstCue。我想看看该变量的成员(反馈温和等)。

另外,我希望能够跳到FirstCue的定义。

到目前为止,我已经看了一下 NetBeans(它没有做第一个,没有进一步看看它是否做了第二个)()。

function clsCues () {
    this.FeedbackMild=true ;  //boolean- whether we provide feedback to let them know if something is allowed or now (i.e., if they click on the wrong thing we'd do a Mild Feedback "ding"
    this.FeedbackCorrectIncorrect=true; //boolean -provide audio/visual feedback if their answer is correct
}
var FirstCue=new clsCues ();
    FirstCue.FeedbackMild=true;

IMO 没有一个免费的 IDE 有特别好的 JavaScript 支持。

IntelliJ 有很好的 JavaScript 支持。不过,只有当您向他们索要操作系统许可证并且他们将其交给您时,它才是免费的,这就是我仍在回答的原因。(另外,它具有我使用过的任何IDE中最好的JS支持。

它还将突出显示非大写构造函数的可疑用法。

(社区版不支持根据其功能比较矩阵进行JS编辑。

相关内容

最新更新