我想在PhpStorm中创建一个自定义检查,它将标记任何特定PHP函数的使用作为警告。我假设我应该使用结构搜索检查,但如果我只是在搜索框中写入函数名称,则没有任何反应。
有没有办法可以在不编写完整插件的情况下添加此检查?
答案 0 :(得分:0)
如果结构搜索检查对您不起作用,唯一的选择是开发插件。见http://confluence.jetbrains.com/display/IDEADEV/Developing+Custom+Language+Plugins+for+IntelliJ+IDEA#DevelopingCustomLanguagePluginsforIntelliJIDEA-CodeInspectionsandIntentions。您也可以使用Open API and Plugin Development forum。
但似乎SSR是一种更容易的方式......你尝试过哪种模式?有关提示,请参阅http://www.jetbrains.com/idea/documentation/ssr.html,http://blogs.jetbrains.com/yole/archives/000045.html