Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Imants Cekusins
Total activity
410
Last activity
June 25, 2024 06:27
Member since
July 30, 2015 11:35
Following
0 users
Followed by
0 users
Votes
15
Subscriptions
108
Activity overview
Posts (12)
Comments (275)
Sort by recent activity
Recent activity
Votes
Created
September 02, 2015 14:04
try this:Runnable r = ()-> EditorModificationUtil.insertStringAtCaret(ed, str);Application app = ApplicationManager.getApplication(); app.executeOnPooledThread(() -> app.runWriteAction(r));
Community
IntelliJ IDEA Open API and Plugin Development
Write access is allowed inside write-action only (see com.intellij.openapi.application.Application.runWriteAction()
0 votes
Created
September 02, 2015 14:29
actually, in this case (a) I would switch to Completion Contributor and getVariants() would return Object[0];the context allows to filter out unlikely items. It is easier to prepare the list in one...
Community
IntelliJ IDEA Open API and Plugin Development
CompletionContributor vs. PsiReference
0 votes
Created
September 03, 2015 07:18
Thank you very much for sharing this, Patrick!!> you can use CompletionType.SMARThow is CompletionType.SMART different from CompletionType.BASIC?is CompletionType.SMART customizable in code?
Community
IntelliJ IDEA Open API and Plugin Development
CompletionContributor vs. PsiReference
0 votes
Created
September 03, 2015 10:02
Thank you Dmitry.I was not aware of Ctrl-Shift-Space.
Community
IntelliJ IDEA Open API and Plugin Development
CompletionContributor vs. PsiReference
0 votes
Created
September 21, 2015 08:47
> Do you mean:com|__ simplepluginyes:add folder com under srcadd folder myfirstplugin under src/comnow all files added to folder myfirstplugin should be automatically placed in package com.myfirstp...
Community
IntelliJ IDEA Open API and Plugin Development
Missing documentation details in IntelliJ Platform SDK DevGuide
0 votes
Created
September 19, 2015 21:31
assuming that this other plugin's action is triggered by YourActionImpl registered in your plugin, why not try this:YourActionImpl extends AnAction{public abstract void actionPerformed(AnActionEven...
Community
IntelliJ IDEA Open API and Plugin Development
Interacting with other plugins
0 votes
Created
September 18, 2015 17:22
are you looking for parameters passed to someMethod / someMethod2in the context of one function (in this example, function something())?
Community
IntelliJ IDEA Open API and Plugin Development
Code Completion - get context in which is method called
0 votes
Created
September 19, 2015 11:23
:)you are welcome
Community
IntelliJ IDEA Open API and Plugin Development
Code Completion - get context in which is method called
0 votes
Created
September 18, 2015 15:13
is postStartupActivity EP's runActivity called too early?
Community
IntelliJ IDEA Open API and Plugin Development
"Directory index is not initialized yet for Project" at plugin startup
0 votes
Created
September 18, 2015 16:33
> what you meant by EPmy apologies Matt,EP: "Extension Point" StartupActivityImpl implements StartupActivity { @Overridepublic void runActivity(@NotNull Project project) { your code } } I gu...
Community
IntelliJ IDEA Open API and Plugin Development
"Directory index is not initialized yet for Project" at plugin startup
0 votes
«
First
‹
Previous
Next
›
Last
»