Questions tagged [intellij-plugin]

Plugin Development for IntelliJ-based IDEs

The IntelliJ Platform SDK is an OSS platform developed by JetBrains for creating language-aware developer tools, plugins, and custom IDEs.

The API provides support for custom languages and frameworks, including syntax highlighting, navigation, code completion, inspections, intentions, refactorings, a debugger, test runners, tool windows, actions, and more, as well as general lexers and parsers.

Resources:

1015 questions
0
votes
3 answers

IntelliJ/PyCharm Project Structure for Existing Python Application

I recently purchased the IntelliJ-IDEA 13 for use of downloading the Python plugin (which I am told has the same code-base as PyCharm) and working on a python web project (specifically Flask). I thought it would be a near seamless transfer from…
EpicDavi
  • 4,482
  • 3
  • 15
  • 19
0
votes
1 answer

How to programmatically retrieve information like language, OS, Architecture, etc. regarding the current project

I'm pretty new to IntelliJ plugin development and I was wondering if there's the possibility to retrieve some information regarding the current project (or better the current edited file). The information I'd like to have access are the…
Cristiano Ghersi
  • 1,352
  • 1
  • 16
  • 38
0
votes
2 answers

Adding a directory path under IntelliJ 12 claims Library 'LibraryName' is not used and has no effect

I maintain an IntelliJ plugin (Codename one) and we need to control the users classpath. I'm adding a classpath either via the plugin or manually by going to here: And pressing the + sign where I pick Java: Then choose classes: This seems to work…
Shai Almog
  • 49,879
  • 5
  • 30
  • 57
0
votes
1 answer

Unable to run JetBrains plugin at all during development

I'm working on creating a JetBrains plugin, and this is driving me completely nuts right now. I had both an app and project component running and working (just starting to play around with them), but now it appears that the initComponent methods of…
bellkev
  • 875
  • 7
  • 10
0
votes
1 answer

IntelliJ IDEA plugin persistence state xml has duplicate lines

I have the following Component: @State( name = "SessionConfiguration", storages = { @Storage(id = "default", file = StoragePathMacros.PROJECT_FILE), @Storage(id = "dir", file = StoragePathMacros.PROJECT_CONFIG_DIR +…
Alp
  • 27,423
  • 26
  • 110
  • 190
0
votes
0 answers

Intellij Plugin Developement - Get the object while debugging

How do I get the object under caret, in my plugin action? The plugin is supposed to work only in Debugger context. I got the PSI file and get all the information about the class and its constituents, but I am lost on how to get the reference of the…
uncaught_exceptions
  • 20,440
  • 4
  • 37
  • 48
-1
votes
0 answers

Panel on settings window from IntelliJ Idea

I am developing a plugin for IntelliJ Idea. I want to add the same list (or what is it?) to the settings window for my plugin. Before that, I acted according to official tutorial (https://plugins.jetbrains.com/docs/intellij/settings-tutorial.html).…
-1
votes
2 answers

regex for match line

we can use .* to match a line from regex. but I need something else similar to this. because intellij grammar kit doesn't support for .*
-1
votes
1 answer

Usage of velocity for plugin development

Edit Downvoter, how is this a bad question? I faced this issue because of classpath loaders required by velocity Idea is to create a predefined java class based on configuration through UI. Created an Action which pops up UI to get the…
-1
votes
1 answer

CodePro: where to find the plugin for Intellij Idea?

I have Codepro analytics plugin installed on my eclipse https://dl.google.com/eclipse/inst/codepro/latest/3.7 which I am using since may days. However I don't see any new version coming up for this. I am now shifting to Intellij Idea for my…
tpsaitwal
  • 402
  • 1
  • 4
  • 23
-1
votes
2 answers

Custom action button for executing intellij plugin

I have written a Intellij plugin that defines a custom action. I want to execute this via button icon like below. Any pointers on how to add this?
Saim Raza
  • 1,090
  • 9
  • 15
-1
votes
1 answer

Fast variable insertion into string

Is there any Intellij Idea hotkey or a plugin to quickly insert variable into string? e.g. i have string "My code is working, yay! Result is = ", and i have to add construction "+variable +", resulting in "My code is working, yay! Result is = "+…
Narryel
  • 11
  • 3
-1
votes
1 answer

How to independent run the intellij plugin in multiple project?(intellij plugin develop)

i have rewrite the intellij plugin: MyBatis Log Plugin. The plugin feature is restore the mybatis generate sql to original whole executable sql. And i have open the source on github: MyBatis Log Plugin I want run this plugin on every different…
kookob
  • 123
  • 1
  • 8
-1
votes
1 answer

IntelliJ Plugin Development - Parameter / Method Hints

I am looking into writing plugin for the IntelliJ IDE for testing. I would like methods and classes to have something to indicate the number of tests and coverage they have. i.e. I have a method in my class and I can see that it has 3 tests written…
James Webb
  • 151
  • 2
  • 16
-1
votes
1 answer

How can I run a .class file through Intellij IDEA API?

I am creating a plugin which should compile a java code, run it on input that I provide from a file, and then save the output to another file, but I am unable to figure out a way to do this. For compilation, I got help from sbmpost's code for his…
1 2 3
67
68