Skip to content

Commit 8879b64

Browse files
Update description
1 parent 97c4e0e commit 8879b64

3 files changed

Lines changed: 15 additions & 9 deletions

File tree

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "pl.semidude"
8-
version = "1.0-SNAPSHOT"
8+
version = "1.0.1"
99

1010
repositories {
1111
mavenCentral()
@@ -47,4 +47,4 @@ tasks {
4747
publishPlugin {
4848
token.set(System.getenv("PUBLISH_TOKEN"))
4949
}
50-
}
50+
}

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = "mongo-view-tweaks"
1+
rootProject.name = "tree-view-by-default"

src/main/resources/META-INF/plugin.xml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,16 @@
1313
<!-- Description of the plugin displayed on the Plugin Page and IDE Plugin Manager.
1414
Simple HTML elements (text formatting, paragraphs, and lists) can be added inside of <![CDATA[ ]]> tag.
1515
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-description -->
16-
<description>
17-
The data grid with query results by default is in the 'Table' presentation mode. This plugin changes it to 'Tree'.
18-
19-
Additionally, if the results contain only one row, then it is automatically expanded.
16+
<description><![CDATA[
17+
It is recommended to use this plugin in DataGrip, but it should also work in other IDEs with database support.
18+
<br /><br />
19+
What it does:
20+
<ul>
21+
<li>Changes default presentation mode of the query results to <tt>Tree</tt></li>
22+
<li>If there is only one result, it is automatically expanded</li>
23+
<li>You can copy value of the leaf node without the containing JSON via Cmd+Option+C </li>
24+
</ul>
25+
]]>
2026
</description>
2127

2228
<!-- Product and plugin compatibility requirements.
@@ -51,8 +57,8 @@
5157
class="pl.semidude.treeviewbydefault.TreeViewCopyAction"
5258
text="Copy Leaf Value"
5359
description="Copy only the leaf value, not full JSON containing it">
54-
<add-to-group group-id="Console.TableResult.PopupGroup" anchor="first" />
55-
<keyboard-shortcut keymap="$default" first-keystroke="alt C"/>
60+
<add-to-group group-id="Console.TableResult.PopupGroup" anchor="before" relative-to-action="$Copy" />
61+
<keyboard-shortcut keymap="$default" first-keystroke="ctrl alt C"/>
5662
</action>
5763
</actions>
5864

0 commit comments

Comments
 (0)