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 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
Created
September 16, 2015 21:23
> two links refering to the same file will not get wordhighlighted when the caret is on one of them if the link has a space but will highlight if the link has no spaces. They will highlight if the ...
Community
IntelliJ IDEA Open API and Plugin Development
How to allow Rename Refactoring to handle spaces in referencing Elements?
0 votes
Created
September 16, 2015 22:18
did you try putting a letter between these odd characters?e.g. [[NOTICE@]] --> NOTICE@.md refactor to NOTIC@E$.mdalso e.g. [[NOTICE@]] --> NOTICE@.md refactor to NO$TIC@E.md?
Community
IntelliJ IDEA Open API and Plugin Development
How to allow Rename Refactoring to handle spaces in referencing Elements?
0 votes
Created
September 16, 2015 22:35
.. and if after renaming, save and sync files,close and reopen the project,do the links get restored (point to files, work as expected) by any chance?
Community
IntelliJ IDEA Open API and Plugin Development
How to allow Rename Refactoring to handle spaces in referencing Elements?
0 votes
Created
September 17, 2015 12:45
just thought of something else:the problem may be with DefaultWordsScanner.what you could try:in your implementation of FindUsagesProvider:there is likely this line: @Overridepublic void processWor...
Community
IntelliJ IDEA Open API and Plugin Development
How to allow Rename Refactoring to handle spaces in referencing Elements?
0 votes
Created
September 18, 2015 08:34
Hello Elliotte,it is possible to debug without Intellij sources attached: you can still step in to actual (decompiled) Intellij code. You can set breakpoints, catch exceptions in decompiled code, t...
Community
IntelliJ IDEA Open API and Plugin Development
Debuggin with IntelliJ source code
0 votes
«
First
‹
Previous
Next
›
Last
»