1
0
mirror of https://github.com/chylex/IntelliJ-Keyboard-Master.git synced 2024-11-25 01:42:47 +01:00

Compare commits

..

No commits in common. "f3a36850846f39d09477afd7f791eb9866744a79" and "723b8af9392af050f74aa6c579fcbc0e2f31b0d9" have entirely different histories.

2 changed files with 3 additions and 8 deletions

View File

@ -8,7 +8,7 @@ plugins {
} }
group = "com.chylex.intellij.keyboardmaster" group = "com.chylex.intellij.keyboardmaster"
version = "0.5.8" version = "0.5.7"
repositories { repositories {
mavenCentral() mavenCentral()

View File

@ -70,20 +70,15 @@ internal object VimTreeNavigation {
val path = tree.selectionPath ?: return val path = tree.selectionPath ?: return
if (tree.isExpanded(path)) { if (tree.isExpanded(path)) {
collapseAndScroll(tree, path) tree.collapsePath(path)
} }
else { else {
val parentPath = path.parentPath val parentPath = path.parentPath
if (parentPath.parentPath != null || tree.isRootVisible) { if (parentPath.parentPath != null || tree.isRootVisible) {
collapseAndScroll(tree, parentPath) tree.collapsePath(parentPath)
} }
} }
} }
private fun collapseAndScroll(tree: JTree, path: TreePath) {
tree.collapsePath(path)
tree.scrollRowToVisible(tree.getRowForPath(path))
}
} }
private data object ExpandTreeNodeChildrenToNextLevel : ActionNode<VimNavigationDispatcher<JTree>> { private data object ExpandTreeNodeChildrenToNextLevel : ActionNode<VimNavigationDispatcher<JTree>> {