Skip to content

Commit 4b5a0a6

Browse files
committed
Fix: extra keys component does not load config files
1 parent ca2ae6b commit 4b5a0a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/io/neoterm/component/extrakey/ExtraKeyComponent.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class ExtraKeyComponent : ConfigFileBasedComponent<NeoExtraKey>(NeoTermPath.EKS_
6262
extraKeys.clear()
6363
File(baseDir)
6464
.listFiles(NEOLANG_FILTER)
65-
.filterNot { it.absolutePath != NeoTermPath.EKS_DEFAULT_FILE }
65+
.filter { it.absolutePath != NeoTermPath.EKS_DEFAULT_FILE }
6666
.mapNotNull { this.loadConfigure(it) }
6767
.forEach {
6868
registerShortcutKeys(it)

0 commit comments

Comments
 (0)