Questions tagged [jetbrains-ide]

For programming problems relating to using any of the JetBrains tools such as ReSharper, RubyMine, etc. If the issue is related to JetBrains Toolbox, please use the [jetbrains-toolbox] tag instead. General computing questions about using the IDE would be better suited for Super User.

For general issues relating to using any of the JetBrains tools such as ReSharper, RubyMine, etc.

Note: the JetBrains IDE platform shares a lot of common functionality between tools; if you believe you have a tool-specific issue, you should elect to use that tag instead. Some of the tools listed are , , , , , , and .


Tag renamed after a discussion - Should we burninate the [jetbrains] tag?

2557 questions
0
votes
0 answers

How can I send HTTP Request from JetBrains to Prometheus?

For JetBrains IDE I am creating an index.http file. spec.md The document describes the HTTP Request in Editor format designed to provide a simple way to create, execute, and store information about HTTP requests. The specification mostly repeats…
Sergey
  • 418
  • 1
  • 7
  • 21
0
votes
0 answers

PhpStorm: apply double quotes when copy pasting

When I copy-paste OpenAPI docs in PhpStorm * @OA\Parameter( * name="limit", * in="query", * required=true, * description="Limit results" * ), it inserts them with single quotes, even though the copied…
Majesty
  • 2,097
  • 5
  • 24
  • 55
0
votes
0 answers

Cannot add column of type numeric[][] in DataGrip for PostgreSQL

Simple enough... I want to use numeric[][] for a column in a PostgreSQL table in DataGrip, but whenever I specify it and click on "save", the IDE decides to change it to numeric[]. Infuriating. No error, just silently messes up my schema. Why…
serlingpa
  • 12,024
  • 24
  • 80
  • 130
0
votes
0 answers

Is it possible to add more repositories to one dev environment on JetBrains Space?

Is it possible to have more than one repository in one dev environment on JetBrains Space?
0
votes
1 answer

Why does WebStorm look so different on different device

I just got a new PC and installed WebStorm the same way I did on my laptop, but it looks way different and I'm not sure why. When I try to enable settings on my laptop I don't see it, while I do see it on my PC, but I need to enable it on my…
SmugSnail
  • 13
  • 4
0
votes
0 answers

Can JetBrains' Predefined Functions be used in Templates?

The following functions can be used in Live Templates' variables: https://www.jetbrains.com/help/pycharm/2023.1/template-variables.html#predefined_functions Can they be used in File Templates using Apache Velocity as well? #set ( foo =…
Udi
  • 29,222
  • 9
  • 96
  • 129
0
votes
1 answer

How to set the border color of a cell in DataGrip

As shown in the image below, the border color of a cell is yellow and I want to change it. Even though I googled it many times, I still can't find the settings to change. The official documentation mentions that there is a place to set the…
huoshan12345
  • 155
  • 1
  • 2
  • 12
0
votes
0 answers

Create PyCharm project with a script

When working with students I create a repository for each student. Where all homeworks and solutions are committed. I have few start scripts that create folders for each students from names list, then iterate over these folders, create git repos and…
0
votes
0 answers

Goto window issue in IntelliJ CE

I am on IntelliJ CE 20231.1. When I open the Goto popup (the screenshot of the window is attached to show which popup I am talking about), after I type the filename, the arrow keys do not work to navigate on the shown suggestions, neither does enter…
curiousengineer
  • 2,196
  • 5
  • 40
  • 59
0
votes
0 answers

How to read in JetBrains IDE configuration file that someone has shared (by saving with 'Store as project file' in 'Run/Debug Configurations')

JetBrains IDEs like IntelliJ have Run/Debug Configurations. When creating or modifying a configuration, you can select a checkbox with a label "Store as project file". Once this file is shared with someone, how can they import it into their…
chasse
  • 225
  • 2
  • 9
0
votes
0 answers

Can't create project via SFTP with an AWS EC2 in PhpStorm (or any JetBrains IDE)

I'm trying to clone my project on an EC2 machine, the SSH connection works well. But when I tried to clone the project via SFTP in the last step it throws me 'failed to collect files: Could not resolve file'. It's weird because it starts to collect…
0
votes
0 answers

How to import all missing classes at once?

I removed the namespace prefix from many lines in a file. Now I want to import the corresponding classes for each of the missing classes. For example: Route::get('route1', [\App\Http\Controllers\Controller1::class, 'route1']); Route::get('route2',…
pileup
  • 1
  • 2
  • 18
  • 45
0
votes
0 answers

Is it possible to connect PhpStorm to remote server using pem file?

I have searched for possible way to to do that. I have also read JetBrains official documentation. But I haven't found any possible way. Is the any way to do this?
X_slasher
  • 61
  • 10
0
votes
0 answers

Run/Debug options are not available on the project's root folder context menu in PyCharm

so i first create a project (pytest tests) on my PC. for any of the items in the project's folder, i.e root folder/subfolder/specific module i can start a run or debug session by simply right-clicking on that item in Project Window and selecting…
tester11
  • 93
  • 7
0
votes
1 answer

How to install packages from com.intellij for IntelliJ IDEA?

I installed IntelliJ IDEA and trying to create a GUI application with it. But code that automatically being genereted actively uses classes and packages from com.intellij. For example com.intellij.uiDesigner.core.GridLayoutManager. But there is no…