主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Yann Cebron
活动总数
8190
最后的活动
2024年11月11日 14:55
成员加入日期
2003年04月16日 11:50
关注
0 名用户
关注者数
1 名用户
投票数
21
订阅数
3299
活动概览
文章(0)
帖子(121)
评论(4749)
Yann Cebron
进行了评论,
2024年11月11日 14:55
No plugin to add in Gradle, in plugin.xml use<depends>com.intellij.modules.rider</depends>
社区
IntelliJ IDEA Open API and Plugin Development
How to achieve the effect of Inlay hint on the list above each function, separating and triggering by clicking?
0 票
Yann Cebron
进行了评论,
2024年11月11日 14:24
You can use Annotator to provide additional semantic highlighting https://plugins.jetbrains.com/docs/intellij/syntax-highlighting-and-error-highlighting.html#annotator
社区
IntelliJ IDEA Open API and Plugin Development
Syntax highlighting for Yaml
0 票
Yann Cebron
进行了评论,
2024年11月11日 12:59
What exactly are you trying to achieve in your plugin? Extending the builtin YAML plugin from IntelliJ? What exactly to you want to customize?
社区
IntelliJ IDEA Open API and Plugin Development
Syntax highlighting for Yaml
0 票
Yann Cebron
进行了评论,
2024年11月11日 12:58
Could you please share a screenshot of the “stuck” state and how it looks at runtime? Is your plugin open source or available somewhere for installation? Please also note your IDE version.
社区
IntelliJ IDEA Open API and Plugin Development
ToolWindowFactory (and DumbAware) Implementation Not Loaded Immediately When Installed
0 票
Yann Cebron
进行了评论,
2024年11月11日 12:49
Reusable business logic can be extracted from AnAction to utility classes or to services ( https://plugins.jetbrains.com/docs/intellij/plugin-services.html ).
社区
IntelliJ IDEA Open API and Plugin Development
Accessing objects in AnAction class
0 票
Yann Cebron
进行了评论,
2024年11月11日 12:44
Please try overriding com.intellij.ui.LightweightHint#canControlAutoHideIn general, most hints should react to mouse click – why do you need to suppress it explicitly?
社区
IntelliJ IDEA Open API and Plugin Development
How to hide Hint only after text changes or scrolling?
0 票
Yann Cebron
进行了评论,
2024年11月11日 12:29
I could not reproduce this error using 2024.3, please double-check your settings in Settings | Build, Execution, Deployment | Build Tools | GradleAdditional notes:1. Please consider using Kotlin DS...
社区
IntelliJ IDEA Open API and Plugin Development
Plugin setting Gradle plugin (2. 1.0) has a warning
0 票
Yann Cebron
进行了评论,
2024年11月11日 12:23
Do you access any resources packaged in your plugin's JAR file? Make sure to close all related InputStream under all circumstances etc.See also https://plugins.jetbrains.com/docs/intellij/dynamic-p...
社区
IntelliJ IDEA Open API and Plugin Development
Dynamic plugin requires restart on Windows
0 票
Yann Cebron
进行了评论,
2024年11月11日 10:14
Could you try specifying order="first" attribute in the CopyPastePostProcessor registration tag in plugin.xml? At least it seems to work for me on macOS locally. Worth checking Windows/Linux separa...
社区
IntelliJ IDEA Open API and Plugin Development
Ensuring the clipboard has the same text regardless of flavour
0 票
Yann Cebron
进行了评论,
2024年11月07日 14:52
You need to specify dependency on Python plugin using version that is compatible with the chosen IntelliJ IDEA Community distribution. Python support is not bundled in IntelliJ IDEA Community. http...
社区
IntelliJ IDEA Open API and Plugin Development
can support both PsiElEment and PyFunction
0 票