mirror of
https://github.com/chylex/IntelliJ-AceJump.git
synced 2025-09-15 14:32:08 +02:00
Compare commits
2 Commits
experiment
...
experiment
Author | SHA1 | Date | |
---|---|---|---|
2dacffd6d0 | |||
93b069ee21 |
@@ -43,4 +43,4 @@ intellij {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = "org.acejump"
|
group = "org.acejump"
|
||||||
version = "4.0"
|
version = "chylex"
|
||||||
|
@@ -8,8 +8,8 @@ import org.acejump.session.TypeResult
|
|||||||
class JumpMode : SessionMode {
|
class JumpMode : SessionMode {
|
||||||
companion object {
|
companion object {
|
||||||
private val JUMP_HINT = arrayOf(
|
private val JUMP_HINT = arrayOf(
|
||||||
"<f>[J]</f>ump / <f>[L]</f> past Query / <f>[M]</f> Line End",
|
"<f>[J]</f>ump / <f>[L]</f> past Query",
|
||||||
"Word <f>[S]</f>tart / <f>[E]</f>nd"
|
"<f>[E]</f> Word End / <f>[M]</f> Line End"
|
||||||
)
|
)
|
||||||
|
|
||||||
val JUMP_ALT_HINT = JUMP_HINT.map { it.replace("<f>[J]</f>ump ", "<f>[J]</f> at Tag ") }.toTypedArray()
|
val JUMP_ALT_HINT = JUMP_HINT.map { it.replace("<f>[J]</f>ump ", "<f>[J]</f> at Tag ") }.toTypedArray()
|
||||||
@@ -17,9 +17,8 @@ class JumpMode : SessionMode {
|
|||||||
val JUMP_ACTION_MAP = mapOf(
|
val JUMP_ACTION_MAP = mapOf(
|
||||||
'J' to AceTagAction.JumpToSearchStart,
|
'J' to AceTagAction.JumpToSearchStart,
|
||||||
'L' to AceTagAction.JumpPastSearchEnd,
|
'L' to AceTagAction.JumpPastSearchEnd,
|
||||||
'M' to AceTagAction.JumpToLineEnd,
|
'E' to AceTagAction.JumpToWordEnd,
|
||||||
'S' to AceTagAction.JumpToWordStart,
|
'M' to AceTagAction.JumpToLineEnd
|
||||||
'E' to AceTagAction.JumpToWordEnd
|
|
||||||
)
|
)
|
||||||
|
|
||||||
val SELECT_HINT = arrayOf(
|
val SELECT_HINT = arrayOf(
|
||||||
|
Reference in New Issue
Block a user