0

NerdTree isn't working with Vim from iTerm2 for me. It will show the current directory listing but won't let me traverse deeper into the file system, but I can traverse upwards. All directory listings are preceded by ?~V? and I have no idea why. I believe this is the reason that I can't go deeper into directory listings. Does anyone know why this may be?

SaamJB
  • 51

1 Answers1

0

It was an encoding issue. I had to rebuild Vim with bulti-byte support.

Essentially:

./configure --with-features=big 
make 
make install
SaamJB
  • 51