mirror of
https://github.com/chylex/IntelliJ-AceJump.git
synced 2025-01-02 19:42:48 +01:00
IntelliJ platform plugin to quickly jump in the editor.
https://plugins.jetbrains.com/plugin/7086-acejump
gradle/wrapper | ||
src/main | ||
.editorconfig | ||
.gitignore | ||
build.gradle | ||
gradlew | ||
gradlew.bat | ||
README.md |
AceJump
AceJump is a plugin for the IntelliJ Platform that lets you jump to any symbol in the editor with just a few keystrokes.
Hitting the keyboard shortcut for AceJump (Ctrl+; by default) will activate a tooltip overlay. Press any of the illustrated key combinations in sequence, and the cursor will immediately jump to that location in the editor.
Installing
AceJump can be installed by the unzipping the contents of AceJump.zip
into:
$HOME/.IdeaIC
<Major Version>/config/plugins/
if you are using IntelliJ IDEA Community, or$HOME/.IntellijIdea
<Major Version>/config/plugins/
if you are using IntelliJ IDEA Ultimate
You can also install AceJump directly from the IDE, via File | Settings | Plugins | Browse Repositories... | 🔍 "AceJump".
Configuring
You can change the default keyboard shortcut, by visiting File | Settings | Keymap | 🔍 "AceJump" | AceJump | Enter⏎.
Building
In order to build AceJump from the source, clone this repository and run ./gradlew buildPlugin
.
History
- 2.0.13 Fix a regression affecting target mode and line-based navigation:
cc3a23a3bd (diff-a483c757116bde46e566a8b01520a807L51)
- 2.0.12 Fix ClassCastException when input letter not present: https://github.com/johnlindquist/AceJump/issues/73
- 2.0.11 One hundred percent all natural Kotlin.
- 2.0.10 Support 2016.2, remove upper version limit, update internal Kotlin version
- 2.0.9 Compile on Java 7 to address: https://github.com/johnlindquist/AceJump/issues/61
- 2.0.8 Compile on Java 6 to address: https://github.com/johnlindquist/AceJump/issues/59
- 2.0.7 Language update for Kotlin 1.0 release.
- 2.0.6 Fixing "lost focus" bugs mentioned here: https://github.com/johnlindquist/AceJump/issues/41
- 2.0.5 Fixing "backspace" bugs mentioned here: https://github.com/johnlindquist/AceJump/issues/20
- 2.0.4 Fixing "code folding" bugs mentioned here: https://github.com/johnlindquist/AceJump/issues/24
- 2.0.3 More work on Ubuntu focus bug
- 2.0.2 Fixed bug when there's only 1 search result
- 2.0.1 Fixing Ubuntu focus bug
- 2.0.0 Major release: Added "target mode", many speed increases, multi-char search implemented
- 1.1.0 Switching to Kotlin for the code base
- 1.0.4 Fixing https://github.com/johnlindquist/AceJump/issues/9 and https://github.com/johnlindquist/AceJump/issues/6
- 1.0.3 Fixed minor visual lag when removing the "jumpers" from the editor
- 1.0.2 Cleaning up minor bugs (npe when editor not in focus, not removing layers)
- 1.0.1 Adding a new jump: "Enter" will take you to the first non-whitespace char in a new line (compare to "Home" which takes you to a new line)
- 1.0.0 Cleaned up code base for release