Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 853
Léo Moro Avatar asked Apr 25 '16 06:04

Léo Moro


2 Answers

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

like image 196
Sebastian Nielsen Avatar answered Sep 20 '22 02:09

Sebastian Nielsen


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

like image 25
TKrugg Avatar answered Sep 20 '22 02:09

TKrugg