Léo Moro
Léo Moro

Reputation: 181

IdeaVim : Navigate through project file

Is it possible with the plugin IdeaVim for IntelliJ to navigate thourgh project file (in the window below) using hjkl key ? Like the CtrlP plugin for Vim.

enter image description here

Upvotes: 6

Views: 9946

Answers (3)

Sebastian Nielsen
Sebastian Nielsen

Reputation: 4209

As of 2021, this is now possible.

All you have to do is enable the NERDTree plugin in ideavim by inserting set NERDTree into your .ideavimrc

Upvotes: 10

Anogoya Dagaate
Anogoya Dagaate

Reputation: 107

This is old but just in case anyone is looking for marginal efficiency. I use this AutoHotKey script to achieve this exact behavior - together with as you'll figure other mapping for never needing to travel out to the Numpad, Arrow keys or Special keys.

As it is a very short repo here are the essentials:

  1. Download autohotkey (https://autohotkey.com/).
  2. Place the .ahk script into the startup folder (win + r, then run "shell:startup" to find on Windows) (https://autohotkey.com/docs/FAQ.htm#Startup). This allows the script to always be active, as it is ran on startup.
  3. Run the Script to go into effect now.

The script is:

#SingleInstance
+CapsLock::CapsLock
CapsLock::Esc

Its been game changing

Upvotes: 1

TKrugg
TKrugg

Reputation: 2405

if you're looking for a CtrlP equivalent, Webstorm has a fuzzy finder that's actually much more powerful than CtrlP. Try COMMAND+SHIFT+O (the letter O) on Mac or CTRL+SHIFT+N on Windows/Linux.

There is more here: https://www.jetbrains.com/help/phpstorm/2016.1/navigating-to-class-file-or-symbol-by-name.html?origin=old_help#d937859e425

Upvotes: 3

Related Questions