我正在使用the Atom text editor,并且已经安装了'Linter'软件包,因此编辑时我可以获取实时调试/错误报告。
Atom具有用于自动安装软件包的UI-一键安装,因此我不知道如何手动进行安装。
我是Git的新手,并且通常会进行编码,因此该软件包的文档中的安装说明对我不是很有帮助。
基本上,当我使用Atom文本编辑器时,我会尝试安装/运行/获取PHP验证。我怎样才能做到这一点?
最佳答案
官方documentation for installing packages is here:
(Since March 2015,这是official repo的Atom.io doc)
apm help install
您应该看到一条打印出来的消息,其中包含有关apm install命令的详细信息。
apm install <package_name> to install the latest version.
apm install <package_name>@<package_version> to install a specific version.
apm search coffee to search for CoffeeScript packages.
apm view emmet to see more information about a specific package.
关于在Atom中手动安装软件包,this thread mentions
在您的情况下:
您可以在this thread中找到类似的过程:
关于git - 在Atom中为Linter软件包安装软件包模块,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24713553/