Live data from Hacker News

Vim - The file explorer

vimcasts.org

1–10 of 13 posts

Re: Vim - The file explorer

#2
That was excellent. I despise NERD tree but I also had no clue how to use netrw. Instead, my habit is to use the console to touch files I want created, or to create or remove directories, etc. This little screencast was quite enlightening and I'll be dropping that habit!

Re: Vim - The file explorer

#7
I use the Vim file explorer all the time. The only thing I miss is having a multi-column layout when I've got a directory with a lot of files.

A couple additional tips:

1) You can quickly and easily search through the files the same way you would search through code (regex included) with something like:

  /filename
2) You can easily jump into the Vim file explorer without the steps of opening Vim and executing a command:

  ~/vim .
This will simply open vim with the file explorer in the current directory.

Re: Vim - The file explorer

#8
post #3

The "manipulating the filesystem" section was very helpful. Also, huge props for making a text version of the screencast.

The more of these vim related articles I find the less I feel the need for plugins.

The only plugins I use are ctrlp and repmo.vim (lets you repeat j and k movements with ;). Unfortunately, repmo.vim breaks on vim 7.3, and I don't know vimscript.

Re: Vim - The file explorer

#10
post #2

That was excellent. I despise NERD tree but I also had no clue how to use netrw. Instead, my habit is to use the console to touch files I want created, or to create or remove directories, etc. This little screencast was quite enlightening and I'll be dropping that habit!

I am curious, what is wrong with NERD tree? I had some frustrations with netrw a while ago which caused me to drop it. I don't really use NERD tree that heavily, though.
Post reply on HN