Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Ronnie Kolehmainen
Total activity
96
Last activity
January 18, 2016 05:22
Member since
September 19, 2010 18:20
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
42
Activity overview
Posts (1)
Comments (53)
Sort by recent activity
Recent activity
Votes
Created
March 24, 2011 21:45
I have no experience with PHP but I guess the principle is the same as with Python.Have a look at PsiFileFactory.createFileFromText(filename, filetype, content,..). Pass a dummy php filename, an in...
Community
IntelliJ IDEA Open API and Plugin Development
Adding elements to PSI in PhpStorm
0 votes
Created
March 23, 2011 18:04
...and add -Didea.platform.prefix=PhpStorm to the VM Parameters of your plugin run configuration.
Community
IntelliJ IDEA Open API and Plugin Development
PHP Plugins (PSI)
0 votes
Created
March 06, 2011 09:22
Hi Hanns,Action lookup uses the action ID (not necessary the class name). For org.jetbrains.plugins.scala.console.RunConsoleAction the ID is "Scala.RunConsole".When unsure of which actions are actu...
Community
IntelliJ IDEA Open API and Plugin Development
Instantiating a plugin's action
0 votes
Created
February 19, 2011 13:49
You should be notified if Find Usages is working on the file in the project view. Have you got a ReferensesSearch registered?
Community
IntelliJ IDEA Open API and Plugin Development
Rename psi-to-file reference on file rename?
0 votes
Created
February 19, 2011 13:59
Also, if your reference is a something like a quoted string, make sure getRangeInElement() returns the range without the quotes (e.g. 1, text.length()-1).Usually references are automatically found ...
Community
IntelliJ IDEA Open API and Plugin Development
Rename psi-to-file reference on file rename?
0 votes
Created
April 06, 2011 09:41
That is an error from the PsiViewer plugin
Community
IntelliJ IDEA Open API and Plugin Development
Lisp custom language plugin
0 votes
Created
May 27, 2011 07:57
You can get VirtualFiles and Editors (and their Documents) from FileEditorManager.
Community
IntelliJ IDEA Open API and Plugin Development
Finding all the files currently being viewed in Intellij
0 votes
Created
June 28, 2011 07:38
The most non-obtrusive way would be to register a GotoDeclarationHandler. In your plugin.xml, use the extension point com.intellij.gotoDeclarationHandler that points to your class that implements c...
Community
IntelliJ IDEA Open API and Plugin Development
create hyperlinks when the user presses ctrl and hovers the mouse over custom text in javadoc
0 votes
Created
December 20, 2011 16:03
max.ishchenko wrote:Now the challenge is to create a reference to a dom element that is located in an unknown location.Actually creating a reference is not the challenge, and it is fully ok that th...
Community
IntelliJ IDEA Open API and Plugin Development
Linking java string literals and some xml elements so that "Go to Declaration" on a literal goes to an element in xml
0 votes
Created
December 21, 2011 09:53
There are a couple approaches that fit different scenarios. For instance, if your xml file(s) are located in a specific location I would go for traversing the PSI of each file with an XmlRecursiveE...
Community
IntelliJ IDEA Open API and Plugin Development
Linking java string literals and some xml elements so that "Go to Declaration" on a literal goes to an element in xml
0 votes
«
First
‹
Previous
Next
›
Last
»