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
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