linwancheng
- Total activity 36
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 7
- Subscriptions 12
-
Created How to get the Comment for Vue tag attributes
AnsweredCtrl + Q at Vue tag attributes can see the Comment, how to get it in my plugin?Like JS, can use `JSDocumentationUtils.findOwnDocCommentForImplicitElement(element)`. I found it mybe from:package.jso... -
Created How to get KtFunction supperMethod and overrideMethod
Answeredlike java:``` val scope = GlobalSearchScope.projectScope(func.project) OverridingMethodsSearch.search(func, scope, true).filterNotNull() func.findSuperMethods().toList()``` -
-
Created How to get CSharp References comment
AnsweredMany people have asked me to support Rider, and I have been researching for a long time.Other languages can obtain comments using psiElement.getReferences().resolve().C # does not have an object th... -
Edited inspectionProfiles use file like defaultLiveTemplates
Answeredlike<defaultLiveTemplates file="/liveTemplates/myLiveTemplates.xml"/>use like<inspectionProfiles file="/inspectionProfiles/myInspectionProfiles.xml"/>myInspectionProfiles.xml (copy from ".idea/insp... -
Created plugin.xml has no module dependencies so we assume that the plugin supports only IntelliJ IDEA
AnsweredI update My Plugin to support multi IDE by `<depends optional="true" config-file="` but Marketplace say "plugin.xml has no module dependencies so we assume that the plugin supports only IntelliJ ID... -
Created How to get sql comment for table and column
AnsweredI use com.intellij.sql.SqlDocumentationProvider#findRelatedDbElements(com.intellij.psi.PsiElement, boolean) to get the sql table and column comment in 2020.1, but this method not found in new version. -
Created Easier to filter data and copy column names
Answered1.Just like the picture, Add a row of input box, input the value to filter the results of the corresponding column equal to a certain value, without writing something like "sys_created like '153%'"...