Alexandr Danchenko
Java/Kotlin developer
- Total activity 181
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 12
- Subscriptions 55
-
Created How to listen editor cursor changes?
AnsweredHello, How can I listen every cursor change? For example, moving cursor left, right, top, bottom. Thanks! -
Created Is it possible to add a menu item to search "Find in files" dialog?
AnsweredHello, I want to know is it possible to add a menu item to search "Find in files" dialog? Thank you! -
Edited Listener for all changes in editor text
AnsweredHello, I need to add listener to handle all (any) changes in Editor text.Right now I added few listeners <typedHandler implementation="EditorTextToBrowserTypedHandler"/><editorActionHandler action... -
Edited Create file from string and open in Editor
AnsweredHello, 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... -
Created How to get current editor line content
AnsweredHello, 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... -
Created JBCefBrowser how to handle JavaScript events or pass data from JavaScript to Java/Kotlin code?
AnsweredHello, 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! -
Created JBCefBrowser executeJavaScript() not work
AnsweredHello 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... -
Created How to get Line number and content in Usages toolwindow
AnsweredHello, Maybe someone know how to get line number and content in AnAction in Usages toolwindow. Thank you! Best regards, Alex -
Created JCEF. How to interact with JCEF component
AnsweredHello, 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... -
Created How to add Action in Right Click Menu in Project Toolwindow and Find (search) Toolwindow
AnsweredHello, 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!