mirror of
https://github.com/chylex/IntelliJ-Keep-Editor-Tooltips-While-Debugging.git
synced 2024-11-25 10:42:46 +01:00
Compare commits
No commits in common. "43857c2f7ff59c9b9c8bf56f8b4575259d764cf0" and "7b9c582ea4ae2ce9682b54d970d3daf80b361b33" have entirely different histories.
43857c2f7f
...
7b9c582ea4
10
README.md
10
README.md
@ -1,9 +1,7 @@
|
||||
When debugging, IntelliJ-based IDEs stop showing editor tooltips, such as Quick Documentation and Error Description, to avoid conflicts with debugger tooltips.
|
||||
This plugin will keep showing editor tooltips, even while debugging.
|
||||
When debugging, IntelliJ-based IDEs stop showing editor popups, such as Quick Documentation and Error Description, to avoid conflicts with debugger popups.
|
||||
This behavior can be annoying since it affects popups from all elements, and not just those that actually conflict.
|
||||
|
||||
If you hover an element that has tooltips from both the editor and the debugger, both tooltips are shown and moving the cursor on top of one hides the other.
|
||||
|
||||
Installing the plugin automatically re-enables all editor tooltips, even if installed in the middle of a debugging session.
|
||||
Disabling or uninstalling the plugin requires an IDE restart.
|
||||
This plugin will keep showing all editor popups, even while debugging.
|
||||
If you hover an element that has popups from both the editor and the debugger, both popups are shown and moving the cursor on top of one hides the other.
|
||||
|
||||
[IDEA-120435](https://youtrack.jetbrains.com/issue/IDEA-120435)
|
||||
|
@ -8,7 +8,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = "com.chylex.intellij.keeppopupswhiledebugging"
|
||||
version = "1.0.1"
|
||||
version = "1.0.0"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
@ -1 +1 @@
|
||||
rootProject.name = "KeepEditorTooltipsWhileDebugging"
|
||||
rootProject.name = "KeepEditorPopupsWhileDebugging"
|
||||
|
@ -18,7 +18,7 @@ class PluginLoadListener : DynamicPluginListener {
|
||||
|
||||
override fun beforePluginUnload(pluginDescriptor: IdeaPluginDescriptor, isUpdate: Boolean) {
|
||||
if (pluginDescriptor.pluginId.idString == PLUGIN_ID) {
|
||||
throw CannotUnloadPluginException("A restart is required to unload Keep Editor Tooltips While Debugging plugin.")
|
||||
throw CannotUnloadPluginException("A restart is required to unload Keep Editor Popups While Debugging plugin.")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,26 +1,16 @@
|
||||
<idea-plugin>
|
||||
<id>com.chylex.intellij.keeppopupswhiledebugging</id>
|
||||
<name>Keep Editor Tooltips While Debugging</name>
|
||||
<name>Keep Editor Popups While Debugging</name>
|
||||
<vendor url="https://chylex.com">chylex</vendor>
|
||||
|
||||
<description><![CDATA[
|
||||
When debugging, IntelliJ-based IDEs stop showing editor tooltips, such as Quick Documentation and Error Description, to avoid conflicts with debugger tooltips.
|
||||
This plugin will keep showing editor tooltips, even while debugging.
|
||||
<br><br>
|
||||
If you hover an element that has tooltips from both the editor and the debugger, both tooltips are shown and moving the cursor on top of one hides the other.
|
||||
<br><br>
|
||||
Installing the plugin automatically re-enables all editor tooltips, even if installed in the middle of a debugging session.
|
||||
Disabling or uninstalling the plugin requires an IDE restart.
|
||||
<br><br>
|
||||
<a href="https://youtrack.jetbrains.com/issue/IDEA-120435">IDEA-120435</a>
|
||||
<p>When debugging, IntelliJ-based IDEs stop showing editor popups, such as Quick Documentation and Error Description, to avoid conflicts with debugger popups.
|
||||
This behavior can be annoying since it affects popups from all elements, and not just those that actually conflict.</p>
|
||||
<p>This plugin will keep showing all editor popups, even while debugging.
|
||||
If you hover an element that has popups from both the editor and the debugger, both popups are shown and moving the cursor on top of one hides the other.</p>
|
||||
<p><a href="https://youtrack.jetbrains.com/issue/IDEA-120435">IDEA-120435</a></p>
|
||||
]]></description>
|
||||
|
||||
<change-notes><![CDATA[
|
||||
<ul>
|
||||
<li>Renamed the plugin to "Keep Editor Tooltips While Debugging" and updated description.</li>
|
||||
</ul>
|
||||
]]></change-notes>
|
||||
|
||||
<depends>com.intellij.modules.platform</depends>
|
||||
|
||||
<extensions defaultExtensionNs="com.intellij">
|
||||
|
Loading…
Reference in New Issue
Block a user