Michael Siepmann
- 活动总数 27
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 8
-
创建于 Run multiple gradle-tasks via plugin
已回答I'm writing a plugin, whih should call some gradle-tasks. This should not be parallel, but one after one. Currently I'm using ExternalSystemUtil.runTask for calling a task and with IN_BACKGROUND... -
创建于 ListCellRenderer for PsiReference?
I'm writing a plugin for my company, where I'm using PsiReferenceBase.Immediate(element, it.xmlElement) to create a Reference between an element inside a JSP to a relevant position inside a xml-fil... -
创建于 Modify a java-class with live-templates
Hi,my plugin should create some java-code in the background. Therfore it opens the class withJavaPsiFacade.getInstance(project).findClass(...)Then, I have some Live-Templates which creates one or m... -
创建于 LinkedHashMap is a Wrong dependency type
Hi, I'm using the CacheValuesManager for caching a complex calculation. The CachedValue is a Map: private val includeTags: CachedValue<Map<String, Collection<XmlTag>>> This works, but sometimes I... -
已编辑于 Converter creates wrong value for GenericDomValue
Hi, i'm writing a plugin for my company, which handles a special kind of XML-file. Inside this XML, there are some lines like: <template model="ViewModelName">path to a JSP</template> where ViewMod... -
已编辑于 Running a script in a plugin
Hello, i'm writing a plugin for IDEA. Now, i would like to run a script inside it. The language could be Javascript or Kotlin, this is not already defined at the moment. But I have some requirem... -
创建于 Questions about language plugin
Hi,i'm writing a plugin for a language. the documentation and example on jetbrains.com is good, but leaves some questions open.in a string can be escaped chars like \n, \t etc. how can i mark these...