This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.intellij.openapi.project.Project | |
import com.intellij.openapi.ui.popup.* | |
import com.intellij.openapi.util.Disposer | |
import com.intellij.ui.JBColor | |
import com.intellij.ui.awt.RelativePoint | |
import liveplugin.* | |
import java.awt.Point | |
var counter = 0 | |
var balloon: Balloon? = null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.intellij.codeInsight.actions.OptimizeImportsProcessor | |
import com.intellij.lang.Language | |
import com.intellij.psi.PsiFile import liveplugin.PluginUtil | |
import liveplugin.registerAction | |
registerAction("Background Optimize Imports") { event -> | |
val project = event.project ?: return@registerAction | |
val kotlinLanguage = Language.findLanguageByID("kotlin")!! | |
val psiFiles = PluginUtil.allPsiItemsIn(project) | |
.filterIsInstance<PsiFile>() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@file:Suppress("UnstableApiUsage") | |
@file:OptIn(UnsafeCastFunction::class) | |
import com.intellij.codeInspection.IntentionWrapper | |
import com.intellij.codeInspection.ProblemHighlightType | |
import com.intellij.openapi.util.TextRange | |
import liveplugin.implementation.registerInspectionIn | |
import org.jetbrains.kotlin.idea.base.resources.KotlinBundle | |
import org.jetbrains.kotlin.idea.caches.resolve.analyzeAsReplacement | |
import org.jetbrains.kotlin.idea.caches.resolve.findModuleDescriptor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.intellij.execution.ExecutionListener | |
import com.intellij.execution.ExecutionManager.Companion.EXECUTION_TOPIC | |
import com.intellij.execution.process.ProcessHandler | |
import com.intellij.execution.runners.ExecutionEnvironment | |
import java.util.concurrent.ConcurrentHashMap | |
val startTimeByRunProfile = ConcurrentHashMap<String, Long>() | |
project!!.messageBus.connect(pluginDisposable) | |
.subscribe(EXECUTION_TOPIC, object : ExecutionListener { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.intellij.openapi.wm.impl.ProjectFrameHelper | |
import com.intellij.openapi.wm.impl.status.InfoAndProgressPanel | |
import liveplugin.getProperty | |
import liveplugin.invoke | |
import liveplugin.registerAction | |
import java.awt.KeyboardFocusManager | |
// https://youtrack.jetbrains.com/issue/IDEA-216058/Return-focus-from-Background-Tasks-window-to-IDE-via-keyboard | |
registerAction("Show Background Process Window", keyStroke = "meta shift B") { | |
val window = KeyboardFocusManager.getCurrentKeyboardFocusManager().focusedWindow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@file:Suppress("UnstableApiUsage") | |
import com.intellij.openapi.fileEditor.FileEditorManager | |
import com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl | |
import liveplugin.registerAction | |
// Action to remove panel at the top of the editor, e.g. "Kotlin script is in beta" panel. | |
registerAction("Remove Top Editor Component", "ctrl meta H") { event -> | |
val project = event.project ?: return@registerAction | |
val editorManager = FileEditorManager.getInstance(project) as FileEditorManagerImpl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.intellij.diagnostic.IdeMessagePanel | |
import com.intellij.openapi.wm.WindowManager | |
import liveplugin.registerAction | |
registerAction("Show IDE Errors", "ctrl shift E") { event -> | |
val messagePanel = WindowManager.getInstance().allProjectFrames | |
.find { it.project == event.project } | |
?.statusBar?.getWidget(IdeMessagePanel.FATAL_ERROR) as IdeMessagePanel | |
messagePanel.openErrorsDialog(null) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The Ultimate Guide to IntelliJ | |
#### tippy tappy | |
--- | |
## https://gitlab.com/enverbral/socrates-hearts | |
--- | |
## Overall ideas | |
- Learn one thing at a time (or whatever works for **you**!) | |
- [Slowification](https://www.amazon.com/Wiring-Winning-Organization-Slowification-Simplification/dp/1950508420) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.intellij.openapi.editor.Editor | |
import com.intellij.openapi.editor.EditorModificationUtil | |
import com.intellij.openapi.editor.IndentGuideDescriptor | |
import com.intellij.openapi.editor.LogicalPosition | |
import com.intellij.openapi.editor.ScrollType.CENTER | |
import com.intellij.openapi.editor.impl.IndentsModelImpl | |
import com.intellij.openapi.fileEditor.ex.IdeDocumentHistory | |
import liveplugin.registerEditorAction | |
// See https://gist.github.com/dkandalov/6bd16ac80ee69739f9b81b665bb93768 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.intellij.openapi.command.executeCommand | |
import com.intellij.openapi.editor.Editor | |
import com.intellij.openapi.editor.EditorModificationUtil | |
import com.intellij.openapi.editor.LogicalPosition | |
import com.intellij.openapi.editor.ScrollType.CENTER_DOWN | |
import com.intellij.openapi.fileEditor.ex.IdeDocumentHistory | |
import liveplugin.editor | |
import liveplugin.registerAction | |
registerAction("Previous Paragraph", "alt shift COMMA") { event -> |
NewerOlder