Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Peter Gromov
Total activity
2258
Last activity
May 09, 2023 12:44
Member since
July 25, 2008 18:59
Following
0 users
Followed by
1 user
Votes
0
Subscriptions
739
Activity overview
Articles (0)
Posts (3)
Comments (1516)
Sort by recent activity
Recent activity
Votes
Created
April 28, 2014 18:34
Do you have accesses from multiple threads here? I'm under impression you don't, so synchronization is not needed.
Community
IntelliJ IDEA Open API and Plugin Development
fileClosed vs projectClosed order
0 votes
Created
April 24, 2014 14:20
Hi,Live templates are code snippets, possibly with some placeholders, inserted into editor using Meta+J or (since IDEA 13.1) just code completion. They are invoked by entering their prefix.Intentio...
Community
IntelliJ IDEA Open API and Plugin Development
Intentions versus live templates versus actions
0 votes
Created
May 29, 2014 21:10
If you just don't want to see the red warning, you can suppress it with HighlightErrorFilter/HighlightInfoFilter extensions.If you don't want Python highlighter to issue those warnings, then it sho...
Community
IntelliJ IDEA Open API and Plugin Development
Interaction with outer language for template language
0 votes
Created
July 21, 2014 17:10
The default matching prefix starts for some reason from the beginning of the line. By debugging in com.intellij.codeInsight.completion.impl.CompletionServiceImpl#createResultSet, you can check why....
Community
IntelliJ IDEA Open API and Plugin Development
Autocompletion inserting at a wrong position
0 votes
Created
July 23, 2014 14:58
Thanks! So the asterisk is the part of prefix, and it's replaced. Is this the desired behavior? If not, you should probably change the prefix so that it doesn't include the asterisk.
Community
IntelliJ IDEA Open API and Plugin Development
Autocompletion inserting at a wrong position
0 votes
Created
July 28, 2014 15:59
withPrefixMatcher creates a new CompletionResultSet and doesn't change the old one. You should use it like this: resultSet = resultSet.withPrefixMatcher(new PlainPrefixMatcher(""));
Community
IntelliJ IDEA Open API and Plugin Development
Autocompletion inserting at a wrong position
0 votes
Created
July 31, 2014 08:12
It's an IDE-wide feature that live templates are suggested so please think again whether to interfere with it. But your contributor can register itself before the live template one add call resultS...
Community
IntelliJ IDEA Open API and Plugin Development
Autocompletion inserting at a wrong position
0 votes
Created
July 21, 2014 17:07
Please check what happens with the items after you psas them to CompletionResultSet.addElement. Are they matched against an empty prefix, or is there some other prefix in operation?
Community
IntelliJ IDEA Open API and Plugin Development
Compeletion provider not working properly
0 votes
Created
July 30, 2014 12:45
Things are clarified in http://devnet.jetbrains.com/thread/455907?tstart=0, the items are matched against a non-empty prefix "* print ""
Community
IntelliJ IDEA Open API and Plugin Development
Compeletion provider not working properly
0 votes
Created
September 23, 2014 17:34
Have you tried com.intellij.openapi.vfs.VfsUtilCore#getRelativePath(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFile)?
Community
IntelliJ IDEA Open API and Plugin Development
How to include specific PsiFile (c++)
0 votes
«
First
‹
Previous
Next
›
Last
»