Opensource
- 活动总数 43
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 16
-
创建于 Set a border around editor without affecting inner component. Basically an overlay instead.
I am using below: protected void onFocus(EditorImpl focused) { focused.getScrollPane().setBorder(BORDER);} But if border adds top, bottom, left, right. Then the inner editor is resizing... -
创建于 Listen to event for editor focus / unfocus.
MessageBus bus = project.getMessageBus();MessageBusConnection connection = bus.connect();connection.subscribe(FileEditorManagerListener.FILE_EDITOR_MANAGER, new FileEditorManagerListener() { ... -
创建于 Binding global shortcuts to actions "extends AnAction implements DumbAware"
This is not a problem but I noticed that when a Popup is visible, then the shortcuts no longer work. <keyboard-shortcut keymap="$default" first-keystroke="shift alt s" /> The shortcut here for... -
创建于 How do you create a configuration settings window for the plugin, easiest start.
已回答A sample implementation exists? Basically to modify settings in the dialog window and if you know how to persist these between restarts. Thank you. -
创建于 Get the splitter orientation and other info on a splitter
已回答In EditorWindow void changeOrientation() { checkConsistency(); final Container parent = myPanel.getParent(); if (parent instanceof Splitter) { final Splitter splitter = (Splitter)parent; ... -
创建于 This forum should sort based on recent activity by default
This forum should sort based on recent activity by default, otherwise replies won't get any attention other than by initial posters. My two cents. -
创建于 Intellij plugin development - How to override any Intellij open file action?
已回答Clicks, enter, search, whatever. I want to modify the position where this new tab is about to open as the current implementation is flawed / does not work as intended. Open file at the end does no... -
已编辑于 How to edit the active intellij editor background color ONLY
已回答I know all about color code preferences. This is not in there, so I need to build a plugin for it. Basically, I would like to edit the color of the background of the currently active editor that...