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
10
votes
3 answers

IntelliJ is very slow when handling big files

I'm using Guidewire development Studio (IntelliJ-based IDE), and it is very slow when handling big text files (~ 1500 lines and above). I tried with an out-of-the-box community IntelliJ as well, but meet the same problem. When I open those files, it…
Hoàng Long
  • 10,221
  • 17
  • 71
  • 114
10
votes
2 answers

How can I perform the searches Java IDEs do for method references programmatically?

You know the find all references feature of eclipse (Search > References > Workspace or Ctrl-Shift-G)? How can I run that programmatically? I have a large codebase that I need to audit for security violations and need to chain about a dozen…
Steven
  • 2,149
  • 3
  • 15
  • 12
9
votes
2 answers

How to write an IntelliJ IDEA Plugin?

IDEA has many plugins to use. I.e. IDEtalk is one of them which I use. How can I code a simple plugin that just connects to Internet and shows a web page? (no need for an address bar but it is not a problem to be). I want my plugin's shortcut's …
kamaci
  • 65,625
  • 65
  • 210
  • 342
9
votes
1 answer

Is there a way to enable/disable Intellij IdeaVim plugin using keyboard shortcut?

I am using IdeaVim in Intellij as I can't really get over modular editing. But there are times when I just want it completely disabled (like when a coworker shows me something on my computer). I know it can be disabled through the plugin manager by…
FLPP
  • 93
  • 4
9
votes
2 answers

Can't render component diagram with PlantUML in IntelliJ

I am trying to create a component diagram using the PlantUML plugin for IntelliJ. I have installed the plugin and worked with it before. However, when I try to render a component diagram, I get an error: Cannot find Graphviz I've also checked…
Yedidya kfir
  • 695
  • 8
  • 25
9
votes
2 answers

IntelliJ: what difference between "SBT Console" and "SBT Shell"?

In the IntelliJ I see two tool windows: SBT Console and SBT Shell. What is the difference between these tools?
den123
  • 733
  • 1
  • 10
  • 25
9
votes
2 answers

IntelliJ Plugin Get Code From Current Open File

Basically, I want to know how to do this (Eclipse Plugin Get Code from Current Open File) in IntelliJ.
nrubin29
  • 1,372
  • 3
  • 21
  • 49
8
votes
4 answers

How to check if thread holds the monitor in IntelliJ?

While working on IntelliJ , I am unable to check that if the thread is holding the lock or not. On eclipse GUI there is a lock like icon against the thread , telling us that it is holding that lock. In below code snapshot, my thread is at…
Sachin Sachdeva
  • 10,526
  • 37
  • 100
8
votes
1 answer

Pin & recoverWhile in a .bnf (Parsing)

I've searched the internet far and wide (for at least half a day now) and I can't seem to find the answers needed. Currently I'm trying to create a .bnf-file for an IntelliJ-Plugin with custom language support. A few tutorials mention the existance…
Fuchs
  • 93
  • 4
8
votes
2 answers

Intellij idea plugin development - hot reload?

I'm creating some plugin to intellij idea. Each time I'm changing code I need to re run app. Is there something like hot reload or similar thing? Or more efficient way?
8
votes
1 answer

How do I debug a python container in intellij?

The docker plugin has a debug port for connecting to a container I have a python application, but according to the docs the debug port is only supported for java. How can I set breakpoints and debug my python container in intellij? Is there some…
red888
  • 18,164
  • 26
  • 123
  • 237
8
votes
2 answers

How do I show a notification in IntelliJ?

Figured out how to show one of those little notification bubble messages in the top right of the screen, answer below.
Verdagon
  • 2,156
  • 3
  • 19
  • 34
8
votes
1 answer

Programmatically updating build.gradle in an intellij plugin

I am writing a plugin for intellij and I would like to programmatically alter the build.gradle file of an Intellij Project. I want to add sourceSets { resources { srcDir 'src/resources' } } inside the android object in the…
Karim
  • 227
  • 2
  • 10
8
votes
2 answers

How to use gradle in intellij idea plugin project?

I am developing an idea plugin, and it is an intellij idea project. I want to use gradle to manage the dependency. How to config?
Dozer
  • 4,319
  • 11
  • 33
  • 52
8
votes
1 answer

Programmatically get the version of an IntelliJ IDEA plugin

Is there a way to programmatically get the version of an IntelliJ IDEA plugin? I'm creating my own IntelliJ IDEA plugin, and I have set the version property in the plugin.xml(e.g.:3.1.1). I need to get the version to display in…
RoshFsk
  • 195
  • 1
  • 11
1 2
3
67 68