主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Marcin R
活动总数
115
最后的活动
2023年07月13日 12:03
成员加入日期
2012年12月10日 15:14
关注
0 名用户
关注者数
0 名用户
投票数
1
订阅数
44
活动概览
帖子(15)
评论(55)
按最近的活动排序
最近的活动
投票数
创建于
2016年09月25日 13:02
I have custom implementation of PSI for CSV files, but it is highly integrated with mechanisms specific for my ogranization (for internal use only), so probably, it would be easier for You to creat...
社区
IntelliJ IDEA Open API and Plugin Development
How to trigger GeneralHighlightingPass operations after file based indexing process?
0 票
已编辑于
2016年09月25日 12:46
About referencing CSV file values - You probably need to implement custom PSI for yours CSV files, look here for details
社区
IntelliJ IDEA Open API and Plugin Development
Referencing a CSV file
0 票
已编辑于
2016年09月25日 12:42
About Table Mode, if You use latest IntelliJ IDEA, You can do as following to create table view: Add dependency in Your plugin descriptor: <depends>com.intellij.database</depends> Add extensio...
社区
IntelliJ IDEA Open API and Plugin Development
Referencing a CSV file
0 票
已编辑于
2016年07月04日 10:30
This plugin is enabled (JSP), I did not switch it off (jsp plugin classes are not visible in jbpm plugin class loader, because of lack of explicit dependency definition in plugin descriptor). You'v...
社区
IntelliJ IDEA Open API and Plugin Development
IDEA 2016 jPBM plugin / XML problem
0 票
创建于
2014年03月28日 16:10
Refer class DumbService, especially methods: runWhenSmart, smartInvokeLater - this may help.
社区
IntelliJ IDEA Open API and Plugin Development
Project Component wait for indexed directories
0 票
创建于
2014年04月18日 12:52
Ok, I add following code to my com.intellij.openapi.application.QueryExecutorBase#processQuery implementation:final SearchScope searchScope = queryParameters.getEffectiveSearchScope();boolean consu...
社区
IntelliJ IDEA Open API and Plugin Development
How works usages highlighting in file? Problem with YAML
0 票
创建于
2014年04月11日 12:57
Maybe try do this after each insertString:PsiDocumentManager.getInstance(project).commitDocument(document);
社区
IntelliJ IDEA Open API and Plugin Development
When are document inserts written to screen?
0 票
创建于
2014年04月14日 08:23
Okay, problem looks like this:1. I open my indexed plain text file and json file2. Remove some line from text file3. Switch selected editor to json file4. IDEA starts indexing plain text file but w...
社区
IntelliJ IDEA Open API and Plugin Development
How to trigger GeneralHighlightingPass operations after file based indexing process?
0 票
创建于
2014年04月25日 12:49
Maybe this help:com.intellij.ProjectTopics#MODULESandpublic interface com.intellij.openapi.project.ModuleListener extends EventListener { void moduleAdded(Project project, Module module); void ...
社区
IntelliJ IDEA Open API and Plugin Development
New/Removed Module events
0 票
创建于
2014年05月27日 12:20
If You want find files, you could also use:com.intellij.psi.search.FilenameIndex#getFilesByName for searching for PsiFilesFilenameIndex.getFilesByName(project, fileName, searchScope);orcom.intellij...
社区
IntelliJ IDEA Open API and Plugin Development
How to find file in project ?
0 票
«
第一页
‹
上一页
下一页
›
最后
»