Alexandr Danchenko
Java/Kotlin developer
- 活动总数 181
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 1 名用户
- 投票数 12
- 订阅数 55
-
创建于 How to listen editor cursor changes?
已回答Hello, How can I listen every cursor change? For example, moving cursor left, right, top, bottom. Thanks! -
创建于 Is it possible to add a menu item to search "Find in files" dialog?
已回答Hello, I want to know is it possible to add a menu item to search "Find in files" dialog? Thank you! -
已编辑于 Listener for all changes in editor text
已回答Hello, I need to add listener to handle all (any) changes in Editor text.Right now I added few listeners <typedHandler implementation="EditorTextToBrowserTypedHandler"/><editorActionHandler action... -
已编辑于 Create file from string and open in Editor
已回答Hello, I need to create new file and open it in editor. I tried different approaches, but always failed because VirtualFile is null. For example, I tried PsiFile file = psiFileFactory.createFile... -
创建于 How to get current editor line content
已回答Hello, I need to get text from current line. I tried something like this val caretModel: CaretModel = editor.caretModelval psiFile = PsiManager.getInstance(project).findFile(virtualFile) ?: return... -
创建于 JBCefBrowser how to handle JavaScript events or pass data from JavaScript to Java/Kotlin code?
已回答Hello, I created simple plugin with JBCefBrowser. I need to handle button or link click and get data from JavaScript in Java/Kotlin code on this JS event. How to do it? Thank you! -
创建于 JBCefBrowser executeJavaScript() not work
已回答Hello I need to modify JBCefBrowser content using JavaScript. I'm trying to modify html content in JBCefBrowser like this, but by some reasons it doesn't work browser.cefBrowser.executeJavaScript... -
创建于 How to get Line number and content in Usages toolwindow
已回答Hello, Maybe someone know how to get line number and content in AnAction in Usages toolwindow. Thank you! Best regards, Alex -
创建于 JCEF. How to interact with JCEF component
已回答Hello, I added JBCefBrowser to my plugin. This browser load local html to toolwindow. Now I need to pass information to this html from Action (for example, menu item) and change values in this ht... -
创建于 How to add Action in Right Click Menu in Project Toolwindow and Find (search) Toolwindow
已回答Hello, I need to add Action in Right Click Menu in Project Toolwindow and Find (search) Toolwindow. Maybe someone could share how to do it? Correct Action group for this?Thank you!