Hacker News new | ask | show | jobs
by thomasmallen 6171 days ago
> Is there any way to do this within Proj?

Nope, it's simple by design. Project.vim seems mainly for projects that need to pull in files from all over the place and probably fulfills that goal well. If I need to search the working directory, I'll use ':!grep -RI "term" .' (or vim's grep which is pretty nice).

I say that project.vim stinks because it's awkward and its usage is unclear. Maybe I've never "gotten" it, but I think there are many others like myself who really, really wanted to like project.vim but just couldn't use it.

I have my mind on other goals. One is to add a toggleable split that gives useful version control information by integrating with the VCS plugin.

1 comments

Sorry, I was a bit vague. I also use grep -R to search through files. I meant searching for files. As in, I have hundreds of files and I want to quickly open bar.rb which is buried in some directly. In project.vim I type '^wh/bar.rb[enter]\s' and boom, I'm in that file.

I guess that's honestly the main functionality I get out of project.vim. I can't comment on how it handles others' needs.

Interesting...I use FuzzyFileFinder for finding the files themselves right now, but I can see the value in having a feature like that built-in.