美文网首页
idea插件开发初探

idea插件开发初探

作者: 伍咖 | 来源:发表于2019-04-05 22:40 被阅读0次

 idea作为我们必备的研发工具,从上班开始打开,到下班关机关闭,陪伴着我们整个上班周期,如何利用idea的既有能力来改善我们的工作效率就尤为重要。目前idea的开发文档中文资料非常少,市面上也几乎没有一本这样的书籍。大部分是需要去读源码一点点的去专研。

IDEA中对Git的常规操作:https://yq.aliyun.com/ziliao/290623

如何在Intellij IDEA中集成Gitlab:https://blog.csdn.net/u010454030/article/details/80653660

Idea常用方式:

一、

NotificationGroup balloonNotifications =new NotificationGroup(

"Notification group", NotificationDisplayType.BALLOON,true);

Notification success = balloonNotifications.createNotification(

"HighlightBracketPair is updated to "

                    +HighlightBracketPairSettings.getInstance().getVersion(),

"<br/>If this plugin helps you, please give me a star on " +

"<b><a href=\"https://github.com/qeesung/HighlightBracketPair\">Github</a>, ^_^.</b>",

NotificationType.INFORMATION,

new NotificationListener.UrlOpeningListener(true));

Notifications.Bus.notify(success,this.myProject);

}

参考资料:

http://www.jetbrains.org/intellij/sdk/docs/welcome.html

http://wiki.jikexueyuan.com/project/intellij-idea-tutorial/plugins-develop.html

https://intellij-support.jetbrains.com/hc/en-us/community/topics/200366979-IntelliJ-IDEA-Open-API-and-Plugin-Development?page=4#posts

IntelliJ IDEA插件开发指南(一):

https://blog.csdn.net/ExcellentYuXiao/article/details/80273109

IntelliJ IDEA插件开发指南(二)

https://blog.csdn.net/ExcellentYuXiao/article/details/80273347

IntelliJ IDEA插件开发指南(三)

https://blog.csdn.net/ExcellentYuXiao/article/details/80273448

干货|IntelliJ IDEA插件开发

https://blog.csdn.net/O4dC8OjO7ZL6/article/details/79722289

【Intellij Idea 插件从入门到深坑】基础的AnAction

https://blog.csdn.net/guohaiyang1992/article/details/78848810

相关文章

网友评论

      本文标题:idea插件开发初探

      本文链接:https://www.haomeiwen.com/subject/aafliqtx.html