mirror of
				https://github.com/chylex/IntelliJ-Inspection-Lens.git
				synced 2025-11-04 02:40:12 +01:00 
			
		
		
		
	Compare commits
	
		
			12 Commits
		
	
	
		
			4899498522
			...
			test-snaps
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						
						
							
						
						ed0b37b86c
	
				 | 
					
					
						|||
| 
						
						
							
						
						cde4d81afe
	
				 | 
					
					
						|||
| 
						
						
							
						
						b1d6ed4d30
	
				 | 
					
					
						|||
| 
						
						
							
						
						2a4764fa15
	
				 | 
					
					
						|||
| 
						
						
							
						
						4bd0931d71
	
				 | 
					
					
						|||
| 
						
						
							
						
						0f41b22872
	
				 | 
					
					
						|||
| 
						
						
							
						
						603b35abdb
	
				 | 
					
					
						|||
| 
						
						
							
						
						08ed1aadea
	
				 | 
					
					
						|||
| 
						
						
							
						
						8936f0e5be
	
				 | 
					
					
						|||
| 
						
						
							
						
						89e71d5301
	
				 | 
					
					
						|||
| 
						
						
							
						
						4c80573375
	
				 | 
					
					
						|||
| 
						
						
							
						
						816440a150
	
				 | 
					
					
						
							
								
								
									
										2
									
								
								.github/FUNDING.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/FUNDING.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,3 +1 @@
 | 
				
			|||||||
github: chylex
 | 
					 | 
				
			||||||
patreon: chylex
 | 
					 | 
				
			||||||
ko_fi: chylex
 | 
					ko_fi: chylex
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -3,4 +3,5 @@
 | 
				
			|||||||
!/.idea/runConfigurations
 | 
					!/.idea/runConfigurations
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/.gradle/
 | 
					/.gradle/
 | 
				
			||||||
 | 
					/.intellijPlatform/
 | 
				
			||||||
/build/
 | 
					/build/
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,7 +2,9 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
Displays errors, warnings, and other inspections inline. Highlights the background of lines with inspections. Supports light and dark themes out of the box.
 | 
					Displays errors, warnings, and other inspections inline. Highlights the background of lines with inspections. Supports light and dark themes out of the box.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
By default, the plugin shows **Errors**, **Warnings**, **Weak Warnings**, **Server Problems**, **Grammar Errors**, **Typos**, and other inspections with a high enough severity level. Configure visible severities in **Settings | Tools | Inspection Lens**.
 | 
					By default, the plugin shows **Errors**, **Warnings**, **Weak Warnings**, **Server Problems**, **Grammar Errors**, **Typos**, and other inspections with a high enough severity level. Left-click an inspection to show quick fixes. Middle-click an inspection to navigate to the relevant code in the editor.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Configure appearance, behavior of clicking on inspections, and visible severities in **Settings | Tools | Inspection Lens**.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Inspired by [Error Lens](https://marketplace.visualstudio.com/items?itemName=usernamehw.errorlens) for Visual Studio Code, and [Inline Error](https://plugins.jetbrains.com/plugin/17302-inlineerror) for IntelliJ Platform.
 | 
					Inspired by [Error Lens](https://marketplace.visualstudio.com/items?itemName=usernamehw.errorlens) for Visual Studio Code, and [Inline Error](https://plugins.jetbrains.com/plugin/17302-inlineerror) for IntelliJ Platform.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,48 +1,57 @@
 | 
				
			|||||||
@file:Suppress("ConvertLambdaToReference")
 | 
					@file:Suppress("ConvertLambdaToReference")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
plugins {
 | 
					plugins {
 | 
				
			||||||
	kotlin("jvm") version "1.8.0"
 | 
						kotlin("jvm")
 | 
				
			||||||
	id("org.jetbrains.intellij") version "1.17.0"
 | 
						id("org.jetbrains.intellij.platform")
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
group = "com.chylex.intellij.inspectionlens"
 | 
					group = "com.chylex.intellij.inspectionlens"
 | 
				
			||||||
version = "1.4.1"
 | 
					version = "1.5.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
repositories {
 | 
					repositories {
 | 
				
			||||||
	mavenCentral()
 | 
						mavenCentral()
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						intellijPlatform {
 | 
				
			||||||
 | 
							defaultRepositories()
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
intellij {
 | 
					dependencies {
 | 
				
			||||||
	version.set("2023.3.3")
 | 
						intellijPlatform {
 | 
				
			||||||
	updateSinceUntilBuild.set(false)
 | 
							intellijIdeaUltimate("2023.3.3")
 | 
				
			||||||
 | 
							bundledPlugin("tanvd.grazi")
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
	plugins.add("tanvd.grazi")
 | 
							// https://plugins.jetbrains.com/plugin/12175-grazie-lite/versions
 | 
				
			||||||
 | 
							// plugin("tanvd.grazi", "233.13135.14")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					intellijPlatform {
 | 
				
			||||||
 | 
						pluginConfiguration {
 | 
				
			||||||
 | 
							ideaVersion {
 | 
				
			||||||
 | 
								sinceBuild.set("233.11361.10")
 | 
				
			||||||
 | 
								untilBuild.set(provider { null })
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
kotlin {
 | 
					kotlin {
 | 
				
			||||||
	jvmToolchain(17)
 | 
						jvmToolchain(17)
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						compilerOptions {
 | 
				
			||||||
 | 
							freeCompilerArgs = listOf(
 | 
				
			||||||
 | 
								"-X" + "jvm-default=all"
 | 
				
			||||||
 | 
							)
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
dependencies {
 | 
					tasks.withType<Test>().configureEach {
 | 
				
			||||||
	testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
tasks.patchPluginXml {
 | 
					 | 
				
			||||||
	sinceBuild.set("233.11361.10")
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
tasks.buildSearchableOptions {
 | 
					 | 
				
			||||||
	enabled = false
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
tasks.test {
 | 
					 | 
				
			||||||
	useJUnitPlatform()
 | 
						useJUnitPlatform()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
tasks.withType<KotlinCompile> {
 | 
					val testSnapshot by intellijPlatformTesting.testIde.registering {
 | 
				
			||||||
	kotlinOptions.freeCompilerArgs = listOf(
 | 
						version = "LATEST-EAP-SNAPSHOT"
 | 
				
			||||||
		"-Xjvm-default=all"
 | 
						useInstaller = false
 | 
				
			||||||
	)
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										
											BIN
										
									
								
								gradle/wrapper/gradle-wrapper.jar
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								gradle/wrapper/gradle-wrapper.jar
									
									
									
									
										vendored
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										2
									
								
								gradle/wrapper/gradle-wrapper.properties
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								gradle/wrapper/gradle-wrapper.properties
									
									
									
									
										vendored
									
									
								
							@@ -1,6 +1,6 @@
 | 
				
			|||||||
distributionBase=GRADLE_USER_HOME
 | 
					distributionBase=GRADLE_USER_HOME
 | 
				
			||||||
distributionPath=wrapper/dists
 | 
					distributionPath=wrapper/dists
 | 
				
			||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
 | 
					distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
 | 
				
			||||||
networkTimeout=10000
 | 
					networkTimeout=10000
 | 
				
			||||||
validateDistributionUrl=true
 | 
					validateDistributionUrl=true
 | 
				
			||||||
zipStoreBase=GRADLE_USER_HOME
 | 
					zipStoreBase=GRADLE_USER_HOME
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										6
									
								
								gradlew
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								gradlew
									
									
									
									
										vendored
									
									
								
							@@ -15,6 +15,8 @@
 | 
				
			|||||||
# See the License for the specific language governing permissions and
 | 
					# See the License for the specific language governing permissions and
 | 
				
			||||||
# limitations under the License.
 | 
					# limitations under the License.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
 | 
					# SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
##############################################################################
 | 
					##############################################################################
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
@@ -55,7 +57,7 @@
 | 
				
			|||||||
#       Darwin, MinGW, and NonStop.
 | 
					#       Darwin, MinGW, and NonStop.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
#   (3) This script is generated from the Groovy template
 | 
					#   (3) This script is generated from the Groovy template
 | 
				
			||||||
#       https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
 | 
					#       https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
 | 
				
			||||||
#       within the Gradle project.
 | 
					#       within the Gradle project.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
#       You can find Gradle at https://github.com/gradle/gradle/.
 | 
					#       You can find Gradle at https://github.com/gradle/gradle/.
 | 
				
			||||||
@@ -84,7 +86,7 @@ done
 | 
				
			|||||||
# shellcheck disable=SC2034
 | 
					# shellcheck disable=SC2034
 | 
				
			||||||
APP_BASE_NAME=${0##*/}
 | 
					APP_BASE_NAME=${0##*/}
 | 
				
			||||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
 | 
					# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
 | 
				
			||||||
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
 | 
					APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
 | 
					# Use the maximum available, or set MAX_FD != -1 to use that value.
 | 
				
			||||||
MAX_FD=maximum
 | 
					MAX_FD=maximum
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										22
									
								
								gradlew.bat
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										22
									
								
								gradlew.bat
									
									
									
									
										vendored
									
									
								
							@@ -13,6 +13,8 @@
 | 
				
			|||||||
@rem See the License for the specific language governing permissions and
 | 
					@rem See the License for the specific language governing permissions and
 | 
				
			||||||
@rem limitations under the License.
 | 
					@rem limitations under the License.
 | 
				
			||||||
@rem
 | 
					@rem
 | 
				
			||||||
 | 
					@rem SPDX-License-Identifier: Apache-2.0
 | 
				
			||||||
 | 
					@rem
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@if "%DEBUG%"=="" @echo off
 | 
					@if "%DEBUG%"=="" @echo off
 | 
				
			||||||
@rem ##########################################################################
 | 
					@rem ##########################################################################
 | 
				
			||||||
@@ -43,11 +45,11 @@ set JAVA_EXE=java.exe
 | 
				
			|||||||
%JAVA_EXE% -version >NUL 2>&1
 | 
					%JAVA_EXE% -version >NUL 2>&1
 | 
				
			||||||
if %ERRORLEVEL% equ 0 goto execute
 | 
					if %ERRORLEVEL% equ 0 goto execute
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo.
 | 
					echo. 1>&2
 | 
				
			||||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
 | 
					echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
 | 
				
			||||||
echo.
 | 
					echo. 1>&2
 | 
				
			||||||
echo Please set the JAVA_HOME variable in your environment to match the
 | 
					echo Please set the JAVA_HOME variable in your environment to match the 1>&2
 | 
				
			||||||
echo location of your Java installation.
 | 
					echo location of your Java installation. 1>&2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
goto fail
 | 
					goto fail
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -57,11 +59,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
if exist "%JAVA_EXE%" goto execute
 | 
					if exist "%JAVA_EXE%" goto execute
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo.
 | 
					echo. 1>&2
 | 
				
			||||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
 | 
					echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
 | 
				
			||||||
echo.
 | 
					echo. 1>&2
 | 
				
			||||||
echo Please set the JAVA_HOME variable in your environment to match the
 | 
					echo Please set the JAVA_HOME variable in your environment to match the 1>&2
 | 
				
			||||||
echo location of your Java installation.
 | 
					echo location of your Java installation. 1>&2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
goto fail
 | 
					goto fail
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1 +1,8 @@
 | 
				
			|||||||
rootProject.name = "InspectionLens"
 | 
					rootProject.name = "InspectionLens"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					pluginManagement {
 | 
				
			||||||
 | 
						plugins {
 | 
				
			||||||
 | 
							kotlin("jvm") version "1.9.21"
 | 
				
			||||||
 | 
							id("org.jetbrains.intellij.platform") version "2.2.1"
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,26 +2,40 @@ package com.chylex.intellij.inspectionlens.editor.lens
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import com.intellij.codeInsight.daemon.impl.IntentionsUI
 | 
					import com.intellij.codeInsight.daemon.impl.IntentionsUI
 | 
				
			||||||
import com.intellij.codeInsight.hint.HintManager
 | 
					import com.intellij.codeInsight.hint.HintManager
 | 
				
			||||||
 | 
					import com.intellij.codeInsight.intention.actions.ShowIntentionActionsAction
 | 
				
			||||||
import com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler
 | 
					import com.intellij.codeInsight.intention.impl.ShowIntentionActionsHandler
 | 
				
			||||||
import com.intellij.lang.LangBundle
 | 
					import com.intellij.lang.LangBundle
 | 
				
			||||||
 | 
					import com.intellij.openapi.actionSystem.ActionManager
 | 
				
			||||||
 | 
					import com.intellij.openapi.actionSystem.ActionPlaces
 | 
				
			||||||
 | 
					import com.intellij.openapi.actionSystem.IdeActions
 | 
				
			||||||
 | 
					import com.intellij.openapi.actionSystem.ex.ActionUtil
 | 
				
			||||||
import com.intellij.openapi.editor.Editor
 | 
					import com.intellij.openapi.editor.Editor
 | 
				
			||||||
import com.intellij.openapi.editor.ScrollType
 | 
					 | 
				
			||||||
import com.intellij.openapi.project.Project
 | 
					import com.intellij.openapi.project.Project
 | 
				
			||||||
import com.intellij.psi.PsiDocumentManager
 | 
					import com.intellij.psi.PsiDocumentManager
 | 
				
			||||||
import com.intellij.psi.PsiFile
 | 
					import com.intellij.psi.PsiFile
 | 
				
			||||||
import com.intellij.psi.util.PsiUtilBase
 | 
					import com.intellij.psi.util.PsiUtilBase
 | 
				
			||||||
 | 
					
 | 
				
			||||||
internal object IntentionsPopup {
 | 
					internal object IntentionsPopup {
 | 
				
			||||||
	fun showAt(editor: Editor, offset: Int) {
 | 
						fun show(editor: Editor) {
 | 
				
			||||||
		editor.caretModel.moveToOffset(offset)
 | 
							if (!tryShow(editor)) {
 | 
				
			||||||
		editor.scrollingModel.scrollToCaret(ScrollType.MAKE_VISIBLE)
 | 
								HintManager.getInstance().showInformationHint(editor, LangBundle.message("hint.text.no.context.actions.available.at.this.location"))
 | 
				
			||||||
		
 | 
					 | 
				
			||||||
		if (!tryShowPopup(editor)) {
 | 
					 | 
				
			||||||
			HintManager.getInstance().showInformationHint(editor, LangBundle.message("hint.text.no.context.actions.available.at.this.location"));
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	private fun tryShowPopup(editor: Editor): Boolean {
 | 
						private fun tryShow(editor: Editor): Boolean {
 | 
				
			||||||
 | 
							// If the IDE uses the default Show Intentions action and handler,
 | 
				
			||||||
 | 
							// use the handler directly to bypass additional logic from the action.
 | 
				
			||||||
 | 
							val action = ActionManager.getInstance().getAction(IdeActions.ACTION_SHOW_INTENTION_ACTIONS)
 | 
				
			||||||
 | 
							if (action.javaClass === ShowIntentionActionsAction::class.java) {
 | 
				
			||||||
 | 
								return tryShowWithDefaultHandler(editor)
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							else {
 | 
				
			||||||
 | 
								ActionUtil.invokeAction(action, editor.component, ActionPlaces.EDITOR_INLAY, null, null)
 | 
				
			||||||
 | 
								return true
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						private fun tryShowWithDefaultHandler(editor: Editor): Boolean {
 | 
				
			||||||
		val project = editor.project ?: return false
 | 
							val project = editor.project ?: return false
 | 
				
			||||||
		val file = PsiUtilBase.getPsiFileInEditor(editor, project) ?: return false
 | 
							val file = PsiUtilBase.getPsiFileInEditor(editor, project) ?: return false
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,11 +1,13 @@
 | 
				
			|||||||
package com.chylex.intellij.inspectionlens.editor.lens
 | 
					package com.chylex.intellij.inspectionlens.editor.lens
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import com.chylex.intellij.inspectionlens.settings.LensHoverMode
 | 
				
			||||||
import com.chylex.intellij.inspectionlens.settings.LensSettingsState
 | 
					import com.chylex.intellij.inspectionlens.settings.LensSettingsState
 | 
				
			||||||
import com.intellij.codeInsight.daemon.impl.HighlightInfo
 | 
					import com.intellij.codeInsight.daemon.impl.HighlightInfo
 | 
				
			||||||
import com.intellij.codeInsight.daemon.impl.HintRenderer
 | 
					import com.intellij.codeInsight.daemon.impl.HintRenderer
 | 
				
			||||||
import com.intellij.codeInsight.hints.presentation.InputHandler
 | 
					import com.intellij.codeInsight.hints.presentation.InputHandler
 | 
				
			||||||
import com.intellij.openapi.editor.Editor
 | 
					import com.intellij.openapi.editor.Editor
 | 
				
			||||||
import com.intellij.openapi.editor.Inlay
 | 
					import com.intellij.openapi.editor.Inlay
 | 
				
			||||||
 | 
					import com.intellij.openapi.editor.ScrollType
 | 
				
			||||||
import com.intellij.openapi.editor.colors.EditorFontType
 | 
					import com.intellij.openapi.editor.colors.EditorFontType
 | 
				
			||||||
import com.intellij.openapi.editor.ex.EditorEx
 | 
					import com.intellij.openapi.editor.ex.EditorEx
 | 
				
			||||||
import com.intellij.openapi.editor.impl.EditorImpl
 | 
					import com.intellij.openapi.editor.impl.EditorImpl
 | 
				
			||||||
@@ -15,18 +17,20 @@ import com.intellij.ui.paint.EffectPainter
 | 
				
			|||||||
import java.awt.Cursor
 | 
					import java.awt.Cursor
 | 
				
			||||||
import java.awt.Graphics
 | 
					import java.awt.Graphics
 | 
				
			||||||
import java.awt.Graphics2D
 | 
					import java.awt.Graphics2D
 | 
				
			||||||
 | 
					import java.awt.MouseInfo
 | 
				
			||||||
import java.awt.Point
 | 
					import java.awt.Point
 | 
				
			||||||
import java.awt.Rectangle
 | 
					import java.awt.Rectangle
 | 
				
			||||||
import java.awt.event.MouseEvent
 | 
					import java.awt.event.MouseEvent
 | 
				
			||||||
 | 
					import java.util.regex.Pattern
 | 
				
			||||||
import javax.swing.SwingUtilities
 | 
					import javax.swing.SwingUtilities
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * Renders the text of an inspection lens.
 | 
					 * Renders the text of an inspection lens.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
class LensRenderer(private var info: HighlightInfo, settings: LensSettingsState) : HintRenderer(null), InputHandler {
 | 
					class LensRenderer(private var info: HighlightInfo, private val settings: LensSettingsState) : HintRenderer(null), InputHandler {
 | 
				
			||||||
	private val useEditorFont = settings.useEditorFont
 | 
					 | 
				
			||||||
	private lateinit var inlay: Inlay<*>
 | 
						private lateinit var inlay: Inlay<*>
 | 
				
			||||||
	private lateinit var attributes: LensSeverityTextAttributes
 | 
						private lateinit var attributes: LensSeverityTextAttributes
 | 
				
			||||||
 | 
						private var extraRightPadding = 0
 | 
				
			||||||
	private var hovered = false
 | 
						private var hovered = false
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	init {
 | 
						init {
 | 
				
			||||||
@@ -40,16 +44,18 @@ class LensRenderer(private var info: HighlightInfo, settings: LensSettingsState)
 | 
				
			|||||||
	
 | 
						
 | 
				
			||||||
	fun setPropertiesFrom(info: HighlightInfo) {
 | 
						fun setPropertiesFrom(info: HighlightInfo) {
 | 
				
			||||||
		this.info = info
 | 
							this.info = info
 | 
				
			||||||
 | 
							val description = getValidDescriptionText(info.description)
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
		text = getValidDescriptionText(info.description)
 | 
							text = description
 | 
				
			||||||
		attributes = LensSeverity.from(info.severity).textAttributes
 | 
							attributes = LensSeverity.from(info.severity).textAttributes
 | 
				
			||||||
 | 
							extraRightPadding = if (description.lastOrNull() == '.') 2 else 0
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	override fun paint(inlay: Inlay<*>, g: Graphics, r: Rectangle, textAttributes: TextAttributes) {
 | 
						override fun paint(inlay: Inlay<*>, g: Graphics, r: Rectangle, textAttributes: TextAttributes) {
 | 
				
			||||||
		fixBaselineForTextRendering(r)
 | 
							fixBaselineForTextRendering(r)
 | 
				
			||||||
		super.paint(inlay, g, r, textAttributes)
 | 
							super.paint(inlay, g, r, textAttributes)
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
		if (hovered) {
 | 
							if (hovered && isHoveringText()) {
 | 
				
			||||||
			paintHoverEffect(inlay, g, r)
 | 
								paintHoverEffect(inlay, g, r)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -62,8 +68,8 @@ class LensRenderer(private var info: HighlightInfo, settings: LensSettingsState)
 | 
				
			|||||||
		
 | 
							
 | 
				
			||||||
		val font = editor.colorsScheme.getFont(EditorFontType.PLAIN)
 | 
							val font = editor.colorsScheme.getFont(EditorFontType.PLAIN)
 | 
				
			||||||
		val x = r.x + TEXT_HORIZONTAL_PADDING
 | 
							val x = r.x + TEXT_HORIZONTAL_PADDING
 | 
				
			||||||
		val y = r.y + editor.ascent + 1
 | 
							val y = r.y + editor.ascent
 | 
				
			||||||
		val w = inlay.widthInPixels - UNDERLINE_WIDTH_REDUCTION
 | 
							val w = inlay.widthInPixels - UNDERLINE_WIDTH_REDUCTION - extraRightPadding
 | 
				
			||||||
		val h = editor.descent
 | 
							val h = editor.descent
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
		g.color = attributes.foregroundColor
 | 
							g.color = attributes.foregroundColor
 | 
				
			||||||
@@ -75,7 +81,7 @@ class LensRenderer(private var info: HighlightInfo, settings: LensSettingsState)
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	override fun useEditorFont(): Boolean {
 | 
						override fun useEditorFont(): Boolean {
 | 
				
			||||||
		return useEditorFont
 | 
							return settings.useEditorFont
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	override fun mouseMoved(event: MouseEvent, translated: Point) {
 | 
						override fun mouseMoved(event: MouseEvent, translated: Point) {
 | 
				
			||||||
@@ -87,6 +93,10 @@ class LensRenderer(private var info: HighlightInfo, settings: LensSettingsState)
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	private fun setHovered(hovered: Boolean) {
 | 
						private fun setHovered(hovered: Boolean) {
 | 
				
			||||||
 | 
							if (hovered && settings.lensHoverMode == LensHoverMode.DISABLED) {
 | 
				
			||||||
 | 
								return
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							
 | 
				
			||||||
		if (this.hovered == hovered) {
 | 
							if (this.hovered == hovered) {
 | 
				
			||||||
			return
 | 
								return
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
@@ -103,18 +113,37 @@ class LensRenderer(private var info: HighlightInfo, settings: LensSettingsState)
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	override fun mousePressed(event: MouseEvent, translated: Point) {
 | 
						override fun mousePressed(event: MouseEvent, translated: Point) {
 | 
				
			||||||
		if (!SwingUtilities.isLeftMouseButton(event) || !isHoveringText(translated)) {
 | 
							val hoverMode = settings.lensHoverMode
 | 
				
			||||||
 | 
							if (hoverMode == LensHoverMode.DISABLED || !isHoveringText(translated)) {
 | 
				
			||||||
			return
 | 
								return
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
		event.consume()
 | 
							if (event.button.let { it == MouseEvent.BUTTON1 || it == MouseEvent.BUTTON2 }) {
 | 
				
			||||||
		IntentionsPopup.showAt(inlay.editor, info.actualStartOffset)
 | 
								event.consume()
 | 
				
			||||||
 | 
								
 | 
				
			||||||
 | 
								val editor = inlay.editor
 | 
				
			||||||
 | 
								moveToOffset(editor, info.actualStartOffset)
 | 
				
			||||||
 | 
								
 | 
				
			||||||
 | 
								if ((event.button == MouseEvent.BUTTON1) xor (hoverMode != LensHoverMode.DEFAULT)) {
 | 
				
			||||||
 | 
									IntentionsPopup.show(editor)
 | 
				
			||||||
 | 
								}
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						private fun isHoveringText(): Boolean {
 | 
				
			||||||
 | 
							val bounds = inlay.bounds ?: return false
 | 
				
			||||||
 | 
							val translatedPoint = MouseInfo.getPointerInfo().location.apply {
 | 
				
			||||||
 | 
								SwingUtilities.convertPointFromScreen(this, inlay.editor.contentComponent)
 | 
				
			||||||
 | 
								translate(-bounds.x, -bounds.y)
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
							
 | 
				
			||||||
 | 
							return isHoveringText(translatedPoint)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	private fun isHoveringText(point: Point): Boolean {
 | 
						private fun isHoveringText(point: Point): Boolean {
 | 
				
			||||||
		return point.x >= HOVER_PADDING_LEFT
 | 
							return point.x >= HOVER_HORIZONTAL_PADDING
 | 
				
			||||||
			&& point.y >= 4
 | 
								&& point.y >= 4
 | 
				
			||||||
			&& point.x < inlay.widthInPixels - HOVER_PADDING_RIGHT
 | 
								&& point.x < inlay.widthInPixels - HOVER_HORIZONTAL_PADDING - extraRightPadding
 | 
				
			||||||
			&& point.y < inlay.heightInPixels - 1
 | 
								&& point.y < inlay.heightInPixels - 1
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
@@ -123,34 +152,50 @@ class LensRenderer(private var info: HighlightInfo, settings: LensSettingsState)
 | 
				
			|||||||
		 * [HintRenderer.paintHint] renders padding around text, but not around effects.
 | 
							 * [HintRenderer.paintHint] renders padding around text, but not around effects.
 | 
				
			||||||
		 */
 | 
							 */
 | 
				
			||||||
		private const val TEXT_HORIZONTAL_PADDING = 7
 | 
							private const val TEXT_HORIZONTAL_PADDING = 7
 | 
				
			||||||
 | 
							private const val HOVER_HORIZONTAL_PADDING = TEXT_HORIZONTAL_PADDING - 2
 | 
				
			||||||
 | 
							private const val UNDERLINE_WIDTH_REDUCTION = (TEXT_HORIZONTAL_PADDING * 2) - 1
 | 
				
			||||||
 | 
							
 | 
				
			||||||
 | 
							private const val MAX_DESCRIPTION_LENGTH = 120
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
		/**
 | 
							/**
 | 
				
			||||||
		 * The last character is always a period, which does not take up the full width, so the underline and the hover region are shrunk by an additional pixel.
 | 
							 * Kotlin compiler inspections have an `[UPPERCASE_TAG]` at the beginning.
 | 
				
			||||||
		 */
 | 
							 */
 | 
				
			||||||
		private const val EXTRA_RIGHT_SIDE_PADDING = 1
 | 
							private val UPPERCASE_TAG_REGEX = Pattern.compile("^\\[[A-Z_]+] ")
 | 
				
			||||||
		
 | 
					 | 
				
			||||||
		private const val UNDERLINE_WIDTH_REDUCTION = (TEXT_HORIZONTAL_PADDING * 2) + EXTRA_RIGHT_SIDE_PADDING
 | 
					 | 
				
			||||||
		private const val HOVER_PADDING_LEFT = TEXT_HORIZONTAL_PADDING - 2
 | 
					 | 
				
			||||||
		private const val HOVER_PADDING_RIGHT = HOVER_PADDING_LEFT + EXTRA_RIGHT_SIDE_PADDING
 | 
					 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
		private fun getValidDescriptionText(text: String?): String {
 | 
							private fun getValidDescriptionText(text: String?): String {
 | 
				
			||||||
			return if (text.isNullOrBlank()) " " else addMissingPeriod(unescapeHtmlEntities(text))
 | 
								return if (text.isNullOrBlank()) " " else addEllipsisOrMissingPeriod(unescapeHtmlEntities(stripUppercaseTag(text)))
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
		private fun unescapeHtmlEntities(potentialHtml: String): String {
 | 
							private fun stripUppercaseTag(text: String): String {
 | 
				
			||||||
			return potentialHtml.ifContains('&', StringUtil::unescapeXmlEntities)
 | 
								if (text.startsWith('[')) {
 | 
				
			||||||
 | 
									val matcher = UPPERCASE_TAG_REGEX.matcher(text)
 | 
				
			||||||
 | 
									if (matcher.find()) {
 | 
				
			||||||
 | 
										return text.substring(matcher.end())
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
 | 
								}
 | 
				
			||||||
 | 
								
 | 
				
			||||||
 | 
								return text
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
		private fun addMissingPeriod(text: String): String {
 | 
							private fun unescapeHtmlEntities(text: String): String {
 | 
				
			||||||
			return if (text.endsWith('.')) text else "$text."
 | 
								return if (text.contains('&')) StringUtil.unescapeXmlEntities(text) else text
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
		private inline fun String.ifContains(charToTest: Char, action: (String) -> String): String {
 | 
							private fun addEllipsisOrMissingPeriod(text: String): String {
 | 
				
			||||||
			return if (this.contains(charToTest)) action(this) else this
 | 
								return when {
 | 
				
			||||||
 | 
									text.length > MAX_DESCRIPTION_LENGTH -> text.take(MAX_DESCRIPTION_LENGTH).trimEnd { it.isWhitespace() || it == '.' } + "…"
 | 
				
			||||||
 | 
									!text.endsWith('.')                  -> "$text."
 | 
				
			||||||
 | 
									else                                 -> text
 | 
				
			||||||
 | 
								}
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
		private fun fixBaselineForTextRendering(rect: Rectangle) {
 | 
							private fun fixBaselineForTextRendering(rect: Rectangle) {
 | 
				
			||||||
			rect.y += 1
 | 
								rect.y += 1
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
							
 | 
				
			||||||
 | 
							private fun moveToOffset(editor: Editor, offset: Int) {
 | 
				
			||||||
 | 
								editor.caretModel.moveToOffset(offset)
 | 
				
			||||||
 | 
								editor.scrollingModel.scrollToCaret(ScrollType.MAKE_VISIBLE)
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -13,11 +13,13 @@ import com.intellij.openapi.ui.DialogPanel
 | 
				
			|||||||
import com.intellij.openapi.util.Disposer
 | 
					import com.intellij.openapi.util.Disposer
 | 
				
			||||||
import com.intellij.ui.DisabledTraversalPolicy
 | 
					import com.intellij.ui.DisabledTraversalPolicy
 | 
				
			||||||
import com.intellij.ui.EditorTextFieldCellRenderer.SimpleRendererComponent
 | 
					import com.intellij.ui.EditorTextFieldCellRenderer.SimpleRendererComponent
 | 
				
			||||||
 | 
					import com.intellij.ui.SimpleListCellRenderer
 | 
				
			||||||
import com.intellij.ui.components.JBCheckBox
 | 
					import com.intellij.ui.components.JBCheckBox
 | 
				
			||||||
import com.intellij.ui.dsl.builder.Cell
 | 
					import com.intellij.ui.dsl.builder.Cell
 | 
				
			||||||
import com.intellij.ui.dsl.builder.RightGap
 | 
					import com.intellij.ui.dsl.builder.RightGap
 | 
				
			||||||
import com.intellij.ui.dsl.builder.Row
 | 
					import com.intellij.ui.dsl.builder.Row
 | 
				
			||||||
import com.intellij.ui.dsl.builder.RowLayout
 | 
					import com.intellij.ui.dsl.builder.RowLayout
 | 
				
			||||||
 | 
					import com.intellij.ui.dsl.builder.bindItem
 | 
				
			||||||
import com.intellij.ui.dsl.builder.bindSelected
 | 
					import com.intellij.ui.dsl.builder.bindSelected
 | 
				
			||||||
import com.intellij.ui.dsl.builder.panel
 | 
					import com.intellij.ui.dsl.builder.panel
 | 
				
			||||||
import java.awt.Cursor
 | 
					import java.awt.Cursor
 | 
				
			||||||
@@ -74,6 +76,20 @@ class LensApplicationConfigurable : BoundConfigurable("Inspection Lens"), Config
 | 
				
			|||||||
		val settings = settingsService.state
 | 
							val settings = settingsService.state
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
		return panel {
 | 
							return panel {
 | 
				
			||||||
 | 
								group("Appearance") {
 | 
				
			||||||
 | 
									row {
 | 
				
			||||||
 | 
										checkBox("Use editor font").bindSelected(settings::useEditorFont)
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
 | 
								}
 | 
				
			||||||
 | 
								
 | 
				
			||||||
 | 
								group("Behavior") {
 | 
				
			||||||
 | 
									row("Hover mode:") {
 | 
				
			||||||
 | 
										val items = LensHoverMode.values().toList()
 | 
				
			||||||
 | 
										val renderer = SimpleListCellRenderer.create("", LensHoverMode::description)
 | 
				
			||||||
 | 
										comboBox(items, renderer).bindItem(settings::lensHoverMode) { settings.lensHoverMode = it ?: LensHoverMode.DEFAULT }
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
 | 
								}
 | 
				
			||||||
 | 
								
 | 
				
			||||||
			group("Shown Severities") {
 | 
								group("Shown Severities") {
 | 
				
			||||||
				for ((id, severity, textAttributes) in allSeverities) {
 | 
									for ((id, severity, textAttributes) in allSeverities) {
 | 
				
			||||||
					row {
 | 
										row {
 | 
				
			||||||
@@ -89,12 +105,6 @@ class LensApplicationConfigurable : BoundConfigurable("Inspection Lens"), Config
 | 
				
			|||||||
					checkBox("Other").bindSelected(settings::showUnknownSeverities)
 | 
										checkBox("Other").bindSelected(settings::showUnknownSeverities)
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			
 | 
					 | 
				
			||||||
			group("Appearance") {
 | 
					 | 
				
			||||||
				row {
 | 
					 | 
				
			||||||
					checkBox("Use editor font").bindSelected(settings::useEditorFont)
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -0,0 +1,7 @@
 | 
				
			|||||||
 | 
					package com.chylex.intellij.inspectionlens.settings
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					enum class LensHoverMode(val description: String) {
 | 
				
			||||||
 | 
						DISABLED("Disabled"),
 | 
				
			||||||
 | 
						DEFAULT("Left click shows intentions, middle click jumps to highlight"),
 | 
				
			||||||
 | 
						SWAPPED("Left click jumps to highlight, middle click shows intentions")
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -21,6 +21,7 @@ class LensSettingsState : SimplePersistentStateComponent<LensSettingsState.State
 | 
				
			|||||||
		
 | 
							
 | 
				
			||||||
		var showUnknownSeverities by property(true)
 | 
							var showUnknownSeverities by property(true)
 | 
				
			||||||
		var useEditorFont by property(true)
 | 
							var useEditorFont by property(true)
 | 
				
			||||||
 | 
							var lensHoverMode by enum(LensHoverMode.DEFAULT)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
	@get:Synchronized
 | 
						@get:Synchronized
 | 
				
			||||||
@@ -31,6 +32,9 @@ class LensSettingsState : SimplePersistentStateComponent<LensSettingsState.State
 | 
				
			|||||||
	val useEditorFont
 | 
						val useEditorFont
 | 
				
			||||||
		get() = state.useEditorFont
 | 
							get() = state.useEditorFont
 | 
				
			||||||
	
 | 
						
 | 
				
			||||||
 | 
						val lensHoverMode
 | 
				
			||||||
 | 
							get() = state.lensHoverMode
 | 
				
			||||||
 | 
						
 | 
				
			||||||
	override fun loadState(state: State) {
 | 
						override fun loadState(state: State) {
 | 
				
			||||||
		super.loadState(state)
 | 
							super.loadState(state)
 | 
				
			||||||
		update()
 | 
							update()
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,12 +6,29 @@
 | 
				
			|||||||
  <description><![CDATA[
 | 
					  <description><![CDATA[
 | 
				
			||||||
    Displays errors, warnings, and other inspections inline. Highlights the background of lines with inspections. Supports light and dark themes out of the box.
 | 
					    Displays errors, warnings, and other inspections inline. Highlights the background of lines with inspections. Supports light and dark themes out of the box.
 | 
				
			||||||
    <br><br>
 | 
					    <br><br>
 | 
				
			||||||
    By default, the plugin shows <b>Errors</b>, <b>Warnings</b>, <b>Weak Warnings</b>, <b>Server Problems</b>, <b>Grammar Errors</b>, <b>Typos</b>, and other inspections with a high enough severity level. Configure visible severities in <b>Settings | Tools | Inspection Lens</a>.
 | 
					    By default, the plugin shows <b>Errors</b>, <b>Warnings</b>, <b>Weak Warnings</b>, <b>Server Problems</b>, <b>Grammar Errors</b>, <b>Typos</b>, and other inspections with a high enough severity level. Left-click an inspection to show quick fixes. Middle-click an inspection to navigate to the relevant code in the editor.
 | 
				
			||||||
 | 
					    <br><br>
 | 
				
			||||||
 | 
					    Configure appearance, behavior of clicking on inspections, and visible severities in <b>Settings | Tools | Inspection Lens</b>.
 | 
				
			||||||
    <br><br>
 | 
					    <br><br>
 | 
				
			||||||
    Inspired by <a href="https://marketplace.visualstudio.com/items?itemName=usernamehw.errorlens">Error Lens</a> for VS Code, and <a href="https://plugins.jetbrains.com/plugin/17302-inlineerror">Inline Error</a> for IntelliJ Platform.
 | 
					    Inspired by <a href="https://marketplace.visualstudio.com/items?itemName=usernamehw.errorlens">Error Lens</a> for VS Code, and <a href="https://plugins.jetbrains.com/plugin/17302-inlineerror">Inline Error</a> for IntelliJ Platform.
 | 
				
			||||||
  ]]></description>
 | 
					  ]]></description>
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
  <change-notes><![CDATA[
 | 
					  <change-notes><![CDATA[
 | 
				
			||||||
 | 
					    <b>Version 1.5.1</b>
 | 
				
			||||||
 | 
					    <ul>
 | 
				
			||||||
 | 
					      <li>Added option to change the behavior of clicking on inspections.</li>
 | 
				
			||||||
 | 
					      <li>Fixed broken quick fixes in Rider and CLion Nova.</li>
 | 
				
			||||||
 | 
					      <li>Fixed hover underline not rendering correctly with some combinations of high DPI and line height settings.</li>
 | 
				
			||||||
 | 
					    </ul>
 | 
				
			||||||
 | 
					    <b>Version 1.5</b>
 | 
				
			||||||
 | 
					    <ul>
 | 
				
			||||||
 | 
					      <li>Added possibility to left-click an inspection to show quick fixes.</li>
 | 
				
			||||||
 | 
					      <li>Added possibility to middle-click an inspection to navigate to relevant code in the editor.</li>
 | 
				
			||||||
 | 
					      <li>Added option to use UI font instead of editor font.</li>
 | 
				
			||||||
 | 
					      <li>Long inspection descriptions are now truncated to 120 characters.</li>
 | 
				
			||||||
 | 
					      <li>Improved descriptions of Kotlin compiler inspections.</li>
 | 
				
			||||||
 | 
					      <li>Fixed visual artifacts in Rendered Doc comments.</li>
 | 
				
			||||||
 | 
					    </ul>
 | 
				
			||||||
    <b>Version 1.4.1</b>
 | 
					    <b>Version 1.4.1</b>
 | 
				
			||||||
    <ul>
 | 
					    <ul>
 | 
				
			||||||
      <li>Fixed warnings in usage of IntelliJ SDK.</li>
 | 
					      <li>Fixed warnings in usage of IntelliJ SDK.</li>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user