Todd Breiholz
- Total activity 121
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 45
-
Todd Breiholz created a post, AnsweredCreating a plugin that will use the PSI for a Java file but no references to JavaPsiFile (and related)
I'd like to create a plugin that contains a single action that when invoked for a Java file will generate an additional file based on the contents of the Java file. I am assuming that I would get t... -
Todd Breiholz created a post, Where to start: Elasticsearch plugin (JSON sytnax, HTTP requests)
I'd like to explore the possibility of creating a plugin to enter and execute Elasticsearch queries. The queries themselves are HTTP(S) requests with a (optional) JSON body. It seems like the place... -
Todd Breiholz created a post, Getting notified of file navigation events when using Hadi's no tabs method
I am using the CodeGlance plugin along with Hadi Hariri's no tabs method of navigation. CodeGlance is a FIleEditorManagerListener and does it's magic when fileOpened and fileClosed is called. The p... -
Todd Breiholz created a post, SASS syntax hilighting in IDEA 10.5?
I've read several places that SASS syntax hilighting support is available in Intellij IDEA via the Ruby plugin. I have the latest version installed (3.2.4) and I don't see a file type for the SASS ... -
Todd Breiholz created a post, Exception when implementing VFS
I am implementing my own VFS and I get the following Exception when I open a file in an editor. The file opens correctly but this exception is thrown. I am sure I am missing something in my impleme... -
Todd Breiholz created a post, Leveraging existing JSP/Java editing framework for non-file based JSP/Java
I'd like to be able to use the existing infrastructure that is available for editing JSP or Java files on content that is not loaded from the file system. The JSP content will be coming out of a JC... -
Todd Breiholz created a post, How do multiple tool windows communicate with each other?
I have two tool windows. One contains a JTree and the other contains a JTable. I'd like to notify the JTable tool window to display details from the node selected in the tree whenever the selection... -
Todd Breiholz created a post, Where to put images in project for plugins
I am writing my first plugin that has UI elements and I'm not sure how to configure my project to ensure that images are available to the plugin (e.g. getResource() calls). Is there a specific dire... -
Todd Breiholz created a post, Deploying web app to root context in JBoss
I have a project configured to use JBoss. We are deploying an exploded war file to JBoss. The web-app lives in a directory named root.war, but the application.xml has the context configured as /. I... -
Todd Breiholz created a post, Executing command line process on OS X
I have a script with the following code: def command = "cvs log $" def proc = command.execute() proc.waitFor() println "exit: ${proc.exitValue()}" def logInfo = p...