Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Anton Lobov
Total activity
30
Last activity
June 19, 2019 09:35
Member since
April 28, 2018 08:53
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
7
Activity overview
Articles (0)
Posts (0)
Comments (23)
Sort by recent activity
Recent activity
Votes
Created
November 16, 2018 09:12
Could you please try the latest 2018.3 EAP build? This issue should already be fixed. (This happened because "c" was a 'reserved' keyword in our internal syntax.) https://www.jetbrains.com/datagrip...
Community
IntelliJ IDEA Users
Table aliases with 2 suffix on SQL JOIN autocomplete
1 vote
Created
October 26, 2018 11:48
Yes, you're right. You should add a dependency, <depends> with the ID of the referenced plugin. We have an article covering that.
Community
IntelliJ IDEA Open API and Plugin Development
Create new .json file in specific directory
0 votes
Created
October 25, 2018 08:12
Good morning. That's true that it returns null. This happens because you pass there a VirtualFile that is not a directory. VirtualFile is an abstraction that encompasses both files and directories....
Community
IntelliJ IDEA Open API and Plugin Development
Create new .json file in specific directory
0 votes
Created
October 24, 2018 10:56
The method you're trying to invoke in static context is not static. :) Please use a static overload.
Community
IntelliJ IDEA Open API and Plugin Development
Create new .json file in specific directory
0 votes
Created
October 24, 2018 09:41
No problem, feel free to ask your questions any time you need. There exists no such method signature as you tried to use, that's correct. IntelliJ community is an open-source product, so you may al...
Community
IntelliJ IDEA Open API and Plugin Development
Create new .json file in specific directory
0 votes
Created
October 23, 2018 09:15
com.intellij.psi.PsiManager#findDirectory, com.intellij.openapi.vfs.VirtualFileManager#refreshAndFindFileByUrl, com.intellij.openapi.util.io.FileUtil#toSystemIndependentName, com.intellij.openapi.v...
Community
IntelliJ IDEA Open API and Plugin Development
Create new .json file in specific directory
0 votes
Created
October 19, 2018 14:47
Use com.intellij.json.psi.JsonElementGenerator#createValue to create a new string value, and com.intellij.psi.PsiElement#replace to replace the original value. To traverse your PSI file, you may: -...
Community
IntelliJ IDEA Open API and Plugin Development
Access and modify a JSON file in a specific directory
0 votes
Created
October 19, 2018 08:14
Hi, There are two ways of doing that. 1) Using IntelliJ APIs: com.intellij.openapi.vfs.VirtualFileManager#findFileByUrl, com.intellij.openapi.fileEditor.FileDocumentManager#getDocument, com.intelli...
Community
IntelliJ IDEA Open API and Plugin Development
Access and modify a JSON file in a specific directory
0 votes
Created
October 11, 2018 10:44
>Actually, I have an action that in some context menu. In this case, just invoke CreateFileFromTemplateAction#createFileFromTemplate inside you action, it allows to specify the directory where your...
Community
IntelliJ IDEA Open API and Plugin Development
Create new .json file in specific directory
0 votes
Edited
October 11, 2018 09:46
If you want to add a file template from your plugin, you can register a template in your plugin.xml: <internalFileTemplate name="my_json"/> You place your template under "fileTemplates\internal" in...
Community
IntelliJ IDEA Open API and Plugin Development
Create new .json file in specific directory
0 votes
«
First
‹
Previous
Next
›
Last
»