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:

1290 questions
-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
  • 61
  • 5
-1
votes
1 answer

Some random questions about Plugin Dev for IntelliJ

I am new to IntelliJ Plugin Development and would like to write a little Plugin for a C# Framework I am using. The Plugin would be for the Rider IDE. The things I would like to know are: How do I execute Code after a project was opened in the…
-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
  • 143
  • 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
  • 167
  • 2
  • 17
-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
votes
1 answer

Intellij Plugin to generate an android project nature

Is it possible to implement an Intellij plugin that can generate a personalized android project in my workspace ? I'm looking for a source code of such plugin Best Regards
Othmandroid
  • 215
  • 2
  • 12
-1
votes
1 answer

Issues with modifying the editor document in Intellij Plugin development

When I do something like this in a a Writecommand action, editor.getDocument().insertString(offset, "Sample text"); I guess it is stored in cache and is not updated immediately. So what can be done to get the update in the very immediate line. I…
-1
votes
1 answer

Code styling without modifying the binaries

On the WebStorm for example and I believe in any Intellij product. You can easily refeactor the code and style it as you like from the setting 'Code Style'. But, the styling and refactoring actually change the binaries of the file. for example if…
Ido
  • 2,034
  • 1
  • 17
  • 16
-1
votes
1 answer

Can I get project build command in intellij plugin?

I'm trying to make plugin for Intellij. Can I get project build command in plugin? (like make dist or gbs build --include-all) And does it works for Android Studio?
region1029
  • 71
  • 1
  • 2
-1
votes
1 answer

How to write code for IntelliJ - Android Plugin

I am writing a plugin for IntelliJ IDEA that depends on the Android plugin. The IntelliJ Community Edition source code doesn't seem to include the Android plugin. I want to access the APIs like AndroidFacet and AndroidUtils in my plugin project.…
nedR
  • 605
  • 1
  • 7
  • 14
-2
votes
1 answer

Merge/Rebase the other way round in intellij?

Intellij's git integration has a "rebase current onto selected" and a "merge into current" operation in its context menu. Is it possible to reverse the direction somehow, to (also) have "rebase selected onto current" and "Merge current into…
drdeath
  • 81
  • 1
  • 11
-2
votes
1 answer

Setting icon for the dialog created using DialogWrapper of IntelliJ

I have created a dialog by extending IntelliJ's "DialogWrapper". Now i want to set icon image for the created Dialog. The information about the DialogWrapper can be found here. How can i set icon(at top left corner) to the dialog?
Nandha
  • 752
  • 1
  • 12
  • 37
-2
votes
1 answer

Intellij idea: how to extend the Java editor

I have managed to develop and run an intellij plugin. Would it be possible to create a plugin extending the java editor for instance by providing a custom code completion feature ?
lowcoupling
  • 2,151
  • 6
  • 35
  • 53
-3
votes
1 answer

com.intellij.openapi.project.IndexNotReadyException Documentation

I'm making an intellij plugin. I get this notice when i run some code in the selectionChanged method of the FileEditorManagerListener. I have no idea what the documentation alludes to - all references to this bend towards some android bug, but I'm…
bharal
  • 15,461
  • 36
  • 117
  • 195
-4
votes
2 answers

can't have spring annotation in intellij

i am new to intellij and all the annotation of spring are in red,i have download the spring data jpa when creating maven project and its still like this.. for example @entity (see photos)
wedew2
  • 5
  • 4
1 2 3
85
86